:root {
  --ink: #0f1923;
  --ink-soft: #2a3a4a;
  --ink-muted: #5a6a7a;
  --canvas: #f5f3ef;
  --canvas-alt: #eef1f5;
  --primary: #1a3a5c;
  --primary-light: #234d78;
  --accent: #e85d26;
  --accent-light: #ff7a45;
  --accent-pale: #fdf1eb;
  --white: #ffffff;
  --surface-1: #ffffff;
  --surface-2: #f0ede8;
  --border: rgba(26,58,92,.1);
  --border-soft: rgba(26,58,92,.06);
  --shadow-sm: 0 1px 4px rgba(15,25,35,.06), 0 2px 8px rgba(15,25,35,.04);
  --shadow-md: 0 4px 16px rgba(15,25,35,.08), 0 8px 32px rgba(15,25,35,.06);
  --shadow-lg: 0 8px 32px rgba(15,25,35,.1), 0 24px 64px rgba(15,25,35,.08);
  --shadow-xl: 0 16px 48px rgba(15,25,35,.12), 0 32px 80px rgba(15,25,35,.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --nav-h: 80px;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.space-section { padding: clamp(4rem, 8vw, 7rem) 0; }

.surface { background: var(--surface-1); }
.surface-raised {
  background: var(--surface-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.surface-inset {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.text-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.text-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--primary);
}

.text-body {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

.text-caption {
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-intro {
  max-width: 600px;
  margin: 1rem auto 0;
  text-align: center;
}

.action-primary {
  background: var(--accent);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .3s, transform .25s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(232,93,38,.35);
  border: none;
  cursor: pointer;
}
.action-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,38,.45);
}

.action-ghost {
  background: transparent;
  color: var(--primary);
  padding: .8rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--primary);
  transition: all .3s ease;
}
.action-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.space-card { padding: clamp(1.5rem, 3vw, 2.5rem); }
.space-inner { padding: clamp(1rem, 2vw, 1.5rem); }


.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 900; }
.nav-full {
  background: rgba(245,243,239,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  justify-content: space-between;
  transition: opacity .4s ease, transform .4s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(232,93,38,.3);
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,93,38,.4);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.mini-pill {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 901;
  background: var(--primary);
  border-radius: 50px;
  padding: .55rem 1.1rem;
  box-shadow: 0 4px 24px rgba(15,25,35,.25);
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  border: none;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all .3s ease;
}
.mini-pill i { font-size: 1rem; }
.mini-pill:hover { background: var(--accent); transform: scale(1.04); }
body.scrolled .nav-full { opacity: 0; pointer-events: none; transform: translateY(-100%); }
body.scrolled .mini-pill { display: flex; }


.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary) 0%, #0d2236 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay-inner { width: 100%; max-width: 500px; padding: 2rem; }
.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.mobile-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}
.mobile-close:hover { background: rgba(255,255,255,.2); }
.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  transition: all .25s ease;
}
.mobile-nav-item i { font-size: 1.4rem; opacity: .8; }
.mobile-nav-item:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.mobile-nav-cta { background: var(--accent); border-color: var(--accent); }
.mobile-nav-cta:hover { background: var(--accent-light); }


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 5rem;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle-1 {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -100px;
  right: -150px;
}
.hero-circle-2 {
  position: absolute;
  width: clamp(200px, 33vw, 400px);
  height: clamp(200px, 33vw, 400px);
  border-radius: 50%;
  border: 1px solid rgba(232,93,38,.15);
  top: 50px;
  right: 50px;
}
.hero-circle-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232,93,38,.08);
  bottom: 80px;
  left: 10%;
}
.hero-line-h {
  position: absolute;
  width: 300px;
  height: 1px;
  background: rgba(255,255,255,.08);
  top: 40%;
  left: 0;
}
.hero-dots {
  position: absolute;
  bottom: 15%;
  right: 8%;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 10px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,93,38,.15);
  border: 1px solid rgba(232,93,38,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-text .text-display { color: #fff; }
.hero-text .text-display em { font-style: normal; color: var(--accent-light); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-top: 1.25rem;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.95);
  border-radius: 10px;
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}
.hero-img-badge i { color: var(--accent); font-size: 1.2rem; }
.hero-img-badge-text { font-size: .8rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.hero-img-badge-text span { color: var(--ink-muted); font-weight: 400; font-size: .75rem; }


.canvas-section { background: var(--canvas); }
.island-intro { text-align: center; margin-bottom: 3rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.problem-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform .3s ease, background .3s;
}
.problem-card:hover .problem-icon {
  transform: rotate(-5deg) scale(1.1);
  background: var(--accent);
  color: #fff;
}
.problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: .6rem;
}
.problem-card p { font-size: .95rem; color: var(--ink-soft); line-height: 1.65; }


.approach-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.approach-geo { position: absolute; inset: 0; pointer-events: none; }
.approach-circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  top: -150px;
  left: -150px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.approach-img-frame { position: relative; }
.approach-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.approach-accent-block {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: var(--radius-md);
  bottom: -20px;
  right: -20px;
  z-index: -1;
  opacity: .6;
}
.approach-text-col .section-label { color: var(--accent-light); }
.approach-text-col .text-heading { color: #fff; }
.approach-text-col .text-body { color: rgba(255,255,255,.68); }
.approach-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.approach-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 40px;
  line-height: 1;
  padding-top: .1rem;
}
.step-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
}
.step-text p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.6; }


.features-section { background: var(--canvas-alt); }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  transition: background .3s ease;
}
.feature-item:hover { background: var(--accent-pale); }
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s, color .3s;
}
.feature-item:hover .feature-icon-wrap {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}
.feature-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: .4rem;
}
.feature-body p { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; }


.cta-band {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.cta-band-geo { position: absolute; inset: 0; pointer-events: none; }
.cta-geo-circle-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  top: -200px;
  right: -100px;
}
.cta-geo-circle-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -80px;
  left: 5%;
}
.cta-geo-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  top: 50%;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band-text .text-heading { color: #fff; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .action-primary { background: #fff; color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.cta-band .action-primary:hover { background: var(--canvas); transform: translateY(-2px); }
.cta-band .action-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .action-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }


.who-section { background: var(--canvas); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.who-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.who-list li i { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }
.who-img-stack { position: relative; }
.who-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.who-img-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 260px;
}
.who-img-card i { font-size: 1.4rem; flex-shrink: 0; }
.who-img-card strong { display: block; font-size: .9rem; color: var(--primary); margin-bottom: .2rem; }
.who-img-card p { font-size: .8rem; color: var(--ink-soft); line-height: 1.4; }


.process-section { background: var(--canvas-alt); }
.process-header { text-align: center; margin-bottom: 3.5rem; }
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 1.5rem; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232,93,38,.35);
}
.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: .5rem 0;
  min-height: 40px;
}
.timeline-line-none { display: none; }
.timeline-content {
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.timeline-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: .6rem;
}
.timeline-content p { font-size: .95rem; color: var(--ink-soft); line-height: 1.65; }


.gallery-section { background: var(--canvas); }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-large { grid-row: span 2; }
.gallery-item-large img { height: 500px; }
.gallery-item:not(.gallery-item-large) img { height: 240px; }


.site-footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-geo { position: absolute; inset: 0; pointer-events: none; }
.footer-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: -200px;
  right: -100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-contact-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s;
  line-height: 1.4;
}
.footer-contact-item:hover { color: rgba(255,255,255,.9); }
.footer-contact-item i { color: var(--accent); margin-top: .1rem; flex-shrink: 0; }
.footer-nav-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: .5rem;
  position: relative;
  z-index: 2;
}


.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 4rem) 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-geo { position: absolute; inset: 0; pointer-events: none; }
.page-hero-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  top: -200px;
  right: -100px;
}
.page-hero-circle-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(232,93,38,.1);
  bottom: -80px;
  left: 10%;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,93,38,.15);
  border: 1px solid rgba(232,93,38,.3);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-hero h1 { color: #fff; max-width: 700px; }
.page-hero p {
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 1rem;
}


.story-section { background: var(--canvas); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text .text-body { margin-top: 1.25rem; }
.story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.story-values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.story-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface-1);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: transform .3s, box-shadow .3s;
}
.story-value:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.story-value-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .3s, color .3s, transform .3s;
}
.story-value:hover .story-value-icon { background: var(--accent); color: #fff; transform: rotate(-8deg); }
.story-value-text strong { display: block; font-size: .95rem; font-weight: 600; color: var(--primary); margin-bottom: .25rem; }
.story-value-text p { font-size: .875rem; color: var(--ink-soft); line-height: 1.6; }


.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.offer-card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.offer-card-top {
  background: var(--primary);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.offer-card-top::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: -50px;
  right: -30px;
}
.offer-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,93,38,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: transform .3s, background .3s;
}
.offer-card:hover .offer-card-icon { transform: scale(1.1) rotate(-5deg); background: var(--accent); }
.offer-card-top h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.offer-card-body { padding: 1.75rem 2rem; }
.offer-card-body p { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }
.offer-card-features { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.offer-card-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--ink-soft);
}
.offer-card-features li i { color: var(--accent); margin-top: .15rem; }


.schedule-intro { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.schedule-card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.schedule-card:hover::before { transform: scaleX(1); }
.schedule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,93,38,.2); }
.schedule-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: transform .3s, background .3s, color .3s;
}
.schedule-card:hover .schedule-card-icon { transform: scale(1.1) rotate(-6deg); background: var(--accent); color: #fff; }
.schedule-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: .6rem;
}
.schedule-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; }

.booking-form-wrap {
  max-width: 700px;
  margin: 4rem auto 0;
  background: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.booking-form-wrap h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.booking-form-wrap > p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 2rem; }


.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface-1);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,38,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .5rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: .1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-check label { font-size: .875rem; color: var(--ink-soft); line-height: 1.5; }
.form-check label a { color: var(--accent); text-decoration: none; }
.form-check label a:hover { text-decoration: underline; }


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-soft);
}
.contact-map { height: 100%; min-height: 500px; }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-form-side {
  background: var(--surface-1);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.contact-form-side h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.contact-form-side > p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 2rem; }

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-info-card {
  background: var(--surface-1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background .3s, color .3s, transform .3s;
}
.contact-info-card:hover .contact-info-icon { background: var(--accent); color: #fff; transform: rotate(-6deg); }
.contact-info-text strong { display: block; font-size: .875rem; font-weight: 600; color: var(--primary); margin-bottom: .25rem; }
.contact-info-text a, .contact-info-text span { font-size: .875rem; color: var(--ink-soft); text-decoration: none; line-height: 1.5; display: block; }
.contact-info-text a:hover { color: var(--accent); }

.office-gallery { margin-top: 4rem; }
.office-gallery h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.office-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.office-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.office-gallery-item:hover img { transform: scale(1.06); }


.thanks-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.thanks-hero-geo { position: absolute; inset: 0; pointer-events: none; }
.thanks-circle-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: -200px;
  right: -100px;
}
.thanks-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -100px;
  left: 5%;
}
.thanks-hero-inner { position: relative; z-index: 2; max-width: 600px; }
.thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}
.thanks-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.thanks-hero p { color: rgba(255,255,255,.8); margin-top: 1rem; font-size: 1.1rem; line-height: 1.7; }
.thanks-next {
  background: var(--canvas);
  padding: 4rem 2rem;
  text-align: center;
}
.thanks-next h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.thanks-next p { font-size: 1rem; color: var(--ink-soft); max-width: 480px; margin: 0 auto 2rem; line-height: 1.7; }


.legal-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative;
  overflow: hidden;
}
.legal-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.legal-hero p { color: rgba(255,255,255,.65); margin-top: .75rem; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
}
.legal-q {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.legal-q:last-child { border-bottom: none; }
.legal-q h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.legal-q p { font-size: .95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: .75rem; }
.legal-q p:last-child { margin-bottom: 0; }
.legal-q ul { margin: .75rem 0 .75rem 1.5rem; }
.legal-q ul li { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: .4rem; }
.legal-date {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-pale);
  border: 1px solid rgba(232,93,38,.2);
  border-radius: var(--radius-sm);
  padding: .4rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2.5rem;
}


.cookie-card {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  background: var(--surface-1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(15,25,35,.18), 0 2px 8px rgba(15,25,35,.08);
  border: 1px solid var(--border-soft);
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.cookie-card.show { transform: translateX(0); }
.cookie-card-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; }
.cookie-card-header i { color: var(--accent); font-size: 1.1rem; }
.cookie-card-header strong { font-size: .9rem; color: var(--primary); font-weight: 600; }
.cookie-card p { font-size: .8rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 1rem; }
.cookie-card p a { color: var(--accent); text-decoration: none; }
.cookie-card p a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: .5rem; flex-direction: column; }
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .55rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .25s, transform .2s;
}
.cookie-btn-accept:hover { background: var(--accent-light); transform: scale(1.02); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color .25s, color .25s;
}
.cookie-btn-settings:hover { border-color: var(--primary); color: var(--primary); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,25,35,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cookie-modal.open { opacity: 1; pointer-events: all; }
.cookie-modal-inner {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}
.cookie-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cookie-modal-header h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--primary); }
.cookie-modal-close { background: none; border: none; cursor: pointer; color: var(--ink-muted); font-size: 1.1rem; transition: color .2s; }
.cookie-modal-close:hover { color: var(--ink); }
.cookie-category { padding: 1rem 0; border-bottom: 1px solid var(--border-soft); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; }
.cookie-category-header strong { font-size: .9rem; font-weight: 600; color: var(--primary); }
.cookie-toggle { position: relative; display: inline-block; width: 40px; height: 22px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  cursor: pointer;
  transition: background .25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-category p { font-size: .8rem; color: var(--ink-muted); line-height: 1.5; }
.cookie-modal-actions { display: flex; gap: .75rem; margin-top: 1.5rem; }
.cookie-modal-actions button { flex: 1; }


.iti, #phone { width: 100%; }
.iti { display: block; }


@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-img-frame img { height: 360px; }
  .who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .who-img-stack { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img { display: none; }
  .features-two-col { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-soft) !important; }
  .feature-item:last-child { border-bottom: none !important; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large img, .gallery-item:not(.gallery-item-large) img { height: 280px; }
  .office-gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-info-strip { grid-template-columns: 1fr; }
  .office-gallery-grid { grid-template-columns: 1fr; }
  .mobile-nav-grid { grid-template-columns: 1fr 1fr; }
  .cookie-card { left: 1rem; right: 1rem; max-width: none; }
  .cookie-modal-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}