/* ================================================
   DESIGN TOKENS
   ================================================ */
:root {
  --brand:        #f47b20;
  --brand-dark:   #db6310;
  --brand-deep:   #b84c0d;
  --brand-light:  #fff3e8;
  --brand-pale:   #fff7f0;

  --ink:          #18181b;
  --ink-muted:    #52525b;
  --ink-faint:    #a1a1aa;

  --bg:           #fffaf5;
  --bg-alt:       #f4f0ea;
  --bg-dark:      #18181b;

  --white:        #ffffff;
  --border:       rgba(180, 111, 41, 0.14);
  --border-light: rgba(0,0,0,0.07);

  --radius-sm:    0.75rem;   /* 12px */
  --radius-md:    1.25rem;   /* 20px */
  --radius-lg:    1.75rem;   /* 28px */
  --radius-xl:    2.25rem;   /* 36px */

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.10);
  --shadow-glow:  0 0 36px rgba(244,123,32,0.22);

  --font-sans:    'Sora', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --max-w:        1200px;
  --px:           clamp(1.25rem, 5vw, 3rem);
}

/* ================================================
   RESET
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at top left, rgba(255,183,109,0.20), transparent 50%),
    radial-gradient(ellipse 60% 40% at top right, rgba(244,123,32,0.09), transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.15s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--ink);
}
::selection { background: rgba(244,123,32,0.18); }

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(244,123,32,0.22);
  background: rgba(255,255,255,0.85);
  color: var(--brand-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title-white {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--ink-muted);
  max-width: 42rem;
  line-height: 1.75;
}
.section-lead-white {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.65);
  max-width: 42rem;
  line-height: 1.75;
}
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.label-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.12);
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-1px); }

/* ================================================
   CARDS
   ================================================ */
.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.card-solid {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.card-dark {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  color: #fff;
}
.card-brand {
  background: var(--brand-pale);
  border: 1px solid rgba(244,123,32,0.18);
  border-radius: var(--radius-lg);
}
.card-hover {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   GRADIENT LINE
   ================================================ */
.gradient-line {
  height: 1px;
  background: linear-gradient(to right, rgba(244,123,32,0.6), rgba(244,123,32,0.12), transparent);
}

/* ================================================
   ICON CIRCLE
   ================================================ */
.icon-circle {
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(244,123,32,0.16), rgba(244,123,32,0.06));
  color: var(--brand-deep);
  flex-shrink: 0;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}
.logo-link:hover .logo-name { color: var(--brand-deep); }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 0.25rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all 0.15s;
}
.nav-link:hover { background: rgba(0,0,0,0.05); color: var(--ink); }
.nav-link.active { background: var(--brand-light); color: var(--brand-deep); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: all 0.15s;
}
.phone-link:hover { border-color: var(--brand); color: var(--brand-deep); }
.phone-link svg { color: var(--brand); }

.menu-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 0.15s;
}
.menu-btn:hover { background: var(--bg-alt); }
.hamburger {
  width: 18px; height: 14px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.22s ease;
  transform-origin: center;
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  padding: 1.25rem var(--px) 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.nav-mobile-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--bg-alt);
  transition: all 0.15s;
}
.nav-mobile-link:hover, .nav-mobile-link.active {
  background: var(--brand-light);
  color: var(--brand-deep);
}
.nav-mobile-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.nav-mobile-cta .btn { justify-content: center; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .menu-btn { display: none; }
}

/* ================================================
   PAGE HERO
   ================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.55);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244,123,32,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,123,32,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,250,245,0.7));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ================================================
   HOME HERO
   ================================================ */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.5);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244,123,32,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,123,32,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(255,250,245,0.8));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(244,123,32,0.25);
  background: rgba(244,123,32,0.08);
  color: var(--brand-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-badge span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--ink-muted);
  max-width: 32rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero card (right side) */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero-card-head {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-card-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}
.hero-card-icon {
  width: 3.25rem; height: 3.25rem;
  background: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 1.75rem 1.25rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 0.5rem;
  background: var(--bg-alt);
  text-align: center;
}
.hero-stat:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.hero-stat:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(0,0,0,0.06); }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.25rem;
}
.hero-services {
  padding: 0 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.875rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-service-dot {
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-service-dot svg { color: var(--brand-deep); }
.hero-service-more {
  background: var(--brand-pale) !important;
  border-color: rgba(244,123,32,0.15) !important;
  color: var(--brand-deep) !important;
}
.hero-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  background: var(--ink);
  gap: 1rem;
}
.hero-contact-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}
.hero-contact-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.15s;
}
.hero-contact-phone:hover { color: var(--brand); }
.hero-contact-cta {
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.hero-contact-cta:hover { background: var(--brand-dark); }
.hero-fise-badge {
  position: absolute;
  top: -0.75rem; right: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  box-shadow: var(--shadow-md);
  max-width: 14rem;
}
.hero-fise-badge .label { display: block; margin-bottom: 0.25rem; }
.hero-fise-badge p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 1023px) {
  .hero-card-wrap { width: 100%; max-width: 30rem; margin-inline: auto; }
  .hero-contact-bar { flex-wrap: wrap; gap: 0.75rem; }
  .hero-contact-cta { width: 100%; text-align: center; }
}
@media (max-width: 768px) {
  .hero-card-wrap,
  .expert-card,
  .hero-right,
  .hero .card {
    margin: 0 auto;
    float: none;
    display: block;
    width: 90%;
    max-width: 400px;
    position: static;
  }
  .hero-card {
    margin: 0 auto;
    float: none;
    display: block;
    width: 100%;
    max-width: 400px;
    position: relative;
  }
  .marko-card,
  .about-card,
  .person-card,
  .profile-card {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-card-wrap { position: relative; padding-top: 1rem; }
}

/* ================================================
   SERVICE CARDS
   ================================================ */
.service-card {
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.4rem;
  line-height: 1.25;
}
.service-summary {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.service-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.service-when {
  background: rgba(0,0,0,0.03);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}
.service-outcome {
  background: var(--brand-pale);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.service-when p, .service-outcome p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.service-outcome .service-section-label { color: var(--brand-deep); }
.service-outcome p { color: var(--brand-deep); }

/* ================================================
   WHY US
   ================================================ */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.25rem 1.5rem;
}
.why-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--ink);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.why-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.why-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Expert card */
.expert-card {
  padding: 2rem 2.25rem;
  height: 100%;
}
.expert-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.expert-stat {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}
.expert-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.expert-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.18), transparent 70%);
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.10), transparent 70%);
  pointer-events: none;
}
.process-grid {
  display: grid;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}
.process-num {
  width: 3rem; height: 3rem;
  background: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}
.process-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================
   REFERENCE CARDS
   ================================================ */
.ref-card {
  overflow: hidden;
}
.ref-card-top {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem 1.5rem;
  background: linear-gradient(135deg, #f4f0ea, #f9f6f2);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ref-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,123,32,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
}
.ref-card-top-inner { position: relative; z-index: 1; }
.ref-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,0,0,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ref-category {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
}
.cat-new          { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.cat-repair       { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.cat-hall         { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
.cat-road         { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.cat-ground       { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.cat-inspection   { background: #f0fdf4; color: #065f46; border-color: #6ee7b7; }

.ref-card-body { padding: 1.5rem 1.75rem; }
.ref-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.ref-summary {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ref-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ref-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.ref-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-block {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.75rem, 6vw, 3.5rem);
  color: #fff;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.2), transparent 70%);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -50px; right: 5%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.10), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.875rem;
}
.cta-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 42rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-actions .btn { justify-content: center; }
@media (min-width: 640px) {
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-actions .btn { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1.25fr 0.75fr; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

/* ================================================
   CONTACT
   ================================================ */
.contact-info-card { padding: 1.75rem; }
.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-deep);
  flex-shrink: 0;
}
.contact-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  transition: color 0.15s;
}
.contact-phone:hover { color: var(--brand-deep); }
.contact-email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-all;
  transition: color 0.15s;
}
.contact-email:hover { color: var(--brand-deep); }
.contact-address-line {
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.contact-cta-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-cta-top {
  background: var(--brand);
  padding: 1.5rem 1.75rem;
}
.contact-cta-top h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.375rem;
}
.contact-cta-top p { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.contact-cta-bottom {
  background: var(--white);
  padding: 1.25rem 1.75rem;
}
.contact-cta-bottom .btn { width: 100%; justify-content: center; }

/* Form */
.form-wrap {
  padding: 2rem 2.25rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-lead {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.form-required { color: var(--brand); margin-left: 0.1em; }
.form-input, .form-select, .form-textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.875rem;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-faint); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.form-note a { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--brand-deep); }
.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}
.form-status.success {
  background: #f0fdf4; color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}
.form-status.error {
  background: #fef2f2; color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}
@media (min-width: 640px) {
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Map */
.map-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 0.75rem;
}
.map-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.map-inner iframe { display: block; width: 100%; height: 26rem; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.edu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.edu-num {
  width: 1.75rem; height: 1.75rem;
  background: var(--brand-light);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--brand-deep);
  flex-shrink: 0;
}
.edu-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.exp-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(244,123,32,0.25);
  background: var(--brand-pale);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-deep);
}
.career-card { padding: 1.75rem; }
.career-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.career-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(0,0,0,0.15);
}
.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1rem;
}
.footer-address {
  font-size: 0.78rem;
  line-height: 1.9;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-nav-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding-block: 0.25rem;
  transition: color 0.15s;
}
.footer-nav-link:hover { color: var(--brand); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding-block: 0.3rem;
  transition: color 0.15s;
}
.footer-contact-item a:hover { color: var(--brand); }
.footer-contact-item svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.footer-logo {
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
@media (min-width: 640px) {
  .footer-main { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ================================================
   SECTION HEADER UTIL
   ================================================ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }

/* ================================================
   MISC
   ================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.bg-alt-section { background: rgba(255,255,255,0.5); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.gap-section { margin-bottom: 1.25rem; }

/* ================================================
   GALLERY FILTERS
   ================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  font-family: var(--font-body);
}
.filter-btn:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}
.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244,123,32,0.28);
}

/* ================================================
   PHOTO GALLERY GRID
   ================================================ */
.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item[hidden] { display: none; }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f0ea;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.04);
}
.gallery-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.gallery-caption {
  padding: 0.875rem 1rem;
}
.gallery-caption p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: center;
  max-width: 42rem;
  line-height: 1.6;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ================================================
   VUOKRAUS PAGE
   ================================================ */
.vuokraus-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f4f0ea;
  aspect-ratio: 4/3;
}
.vuokraus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-badge {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.price-badge-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.price-badge-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.375rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 0.7rem 0;
  font-size: 0.875rem;
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 44%;
  padding-right: 1rem;
}
.spec-table td:last-child {
  color: var(--ink-muted);
}
