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

:root {
  --bg: #ffffff;
  --soft: #f2f4f7;
  --soft-2: #f7f8fa;
  --ink: #111318;
  --ink-2: #1b1e25;
  --body: #4f5359;
  --muted: #868b93;
  --accent: #1ea865;
  --accent-deep: #0f7f4a;
  --shadow: 0 1px 2px rgba(17, 19, 24, 0.04), 0 16px 40px rgba(17, 19, 24, 0.07);
  --rc: 22px;
  --ri: 12px;
  --pill: 100px;
  --sec-y: 96px;
  --nav-h: 72px;
  --wrap: 1240px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section--grey { background: var(--soft); }
.section--ink { background: var(--ink); }

.skip {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 var(--ri) var(--ri);
}

.skip:focus { top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9688rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #2a2e36; }
.btn--paper { background: #fff; color: var(--ink); }
.btn--paper:hover { background: var(--soft); }
.btn--glass { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn--glass:hover { background: rgba(255, 255, 255, 0.26); }

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.4;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-links { display: flex; gap: 22px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 500; text-decoration: none; white-space: nowrap; }
.topbar-links svg { width: 14px; height: 14px; color: rgba(255, 255, 255, 0.7); }
.topbar-links a:hover { color: rgba(255, 255, 255, 0.75); }

.nav {
  position: relative;
  top: 0;
  z-index: 120;
  background: #fff;
  transition: box-shadow 0.25s ease;
}

.nav.scrolled { box-shadow: 0 1px 0 rgba(17, 19, 24, 0.06), 0 10px 30px rgba(17, 19, 24, 0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links > li > a {
  display: block;
  padding: 10px 13px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--pill);
  transition: background-color 0.2s ease;
}

.nav-links > li > a:hover, .nav-links > li > a.is-active { background: var(--soft); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-cta { min-height: 44px; padding: 10px 22px; font-size: 0.9063rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--soft);
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.14s ease 0.18s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transition: opacity 0.06s linear; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-header, .mobile-menu-foot { display: none; }

.mobile-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 110;
  background: rgba(17, 19, 24, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.mobile-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.25s ease, visibility 0s linear 0s; }

.hero { padding: 104px 0 112px; background: var(--ink); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { min-width: 0; }

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 em { font-style: normal; box-shadow: inset 0 -0.14em 0 var(--accent); }

.hero p { max-width: 540px; font-size: 1.125rem; line-height: 1.65; color: rgba(255, 255, 255, 0.72); margin-bottom: 34px; }

.hero-act { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--rc);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 18px; }
.sec-head p { font-size: 1.0625rem; }
.sec-head--slim { margin-bottom: 32px; }
.section--tight { padding-top: 72px; padding-bottom: 72px; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.chips span { display: inline-flex; align-items: center; padding: 11px 20px; background: var(--soft); color: var(--ink); font-size: 0.9375rem; font-weight: 500; border-radius: var(--pill); }

.tabbox { padding: 48px; background: var(--soft); border-radius: 30px; }
.tabbox .tile { background: #fff; }
.tabbox .tile img { background: var(--soft-2); }
.tabbox .tile--photo img { background: none; }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.bshot { position: relative; min-width: 0; height: 100%; aspect-ratio: auto; border-radius: var(--rc); overflow: hidden; background: var(--soft); cursor: pointer; }
.bento .gallery-item { aspect-ratio: auto; }
.bshot--big { grid-column: 1 / 3; grid-row: 1 / 3; }
.bshot--wide { grid-column: 3 / 5; }
.bshot img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.bshot:hover img { transform: scale(1.04); }
.bshot figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 48px 22px 20px; background: linear-gradient(180deg, rgba(17, 19, 24, 0) 0%, rgba(17, 19, 24, 0.78) 100%); color: #fff; }
.bshot figcaption strong { font-size: 1.0625rem; font-weight: 600; }
.bshot figcaption span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }

.sec-foot { display: flex; justify-content: center; margin-top: 40px; }

.chips a { display: inline-flex; align-items: center; padding: 12px 22px; background: var(--soft); color: var(--ink); font-size: 0.9688rem; font-weight: 600; border-radius: var(--pill); text-decoration: none; transition: background-color 0.2s ease, color 0.2s ease; }
.chips a:hover { background: var(--ink); color: #fff; }

.subhero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(62vh, 600px);
  padding: 104px 0 96px;
  overflow: clip;
  background: var(--ink);
}

.subhero-img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.subhero-scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(180deg, rgba(17, 19, 24, 0.78) 0%, rgba(17, 19, 24, 0.72) 55%, rgba(17, 19, 24, 0.86) 100%); }
.subhero-text { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.subhero-text h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.04; letter-spacing: -0.03em; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(17, 19, 24, 0.45); }
.subhero-text h1 em { font-style: normal; box-shadow: inset 0 -0.12em 0 var(--accent); }
.subhero-text p { max-width: 660px; margin: 0 auto; font-size: 1.125rem; line-height: 1.65; color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 14px rgba(17, 19, 24, 0.5); }
.subhero-text .hero-act { justify-content: center; margin-top: 32px; }

.jump { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.jump--four { grid-template-columns: repeat(4, 1fr); }
.jump--four .jump-item { height: 260px; }
.jump-item { display: block; height: 300px; text-decoration: none; color: #fff; }
.bshot .bcap { position: absolute; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 48px 22px 20px; background: linear-gradient(180deg, rgba(17, 19, 24, 0) 0%, rgba(17, 19, 24, 0.78) 100%); color: #fff; }
.bshot .bcap strong { font-size: 1.0625rem; font-weight: 600; }
.bshot .bcap span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }

.tiles.tiles--four { grid-template-columns: repeat(4, 1fr); }
.tiles--four .tile { background: var(--soft); }
.tiles--four .tile img { aspect-ratio: 1 / 1; background: #fff; }
.section--grey .tiles--four .tile { background: #fff; }
.section--grey .tiles--four .tile img { background: var(--soft-2); }

.section--ink .split-text h2, .section--ink .split-text h3 { color: #fff; }
.section--ink .split-text p { color: rgba(255, 255, 255, 0.74); }
.section--ink .marks li, .marks--pale li { color: rgba(255, 255, 255, 0.9); }
.section--ink .marks li::before, .marks--pale li::before { border-color: #8fe0b4; }
.section--ink .btn--ink { background: #fff; color: var(--ink); }
.section--ink .btn--ink:hover { background: var(--soft); }
.section--ink .split-media { background: var(--ink-2); }
.section .split { margin: 0; }

.map { border-radius: var(--rc); overflow: hidden; background: var(--soft-2); line-height: 0; }
.map iframe { width: 100%; height: 420px; border: 0; display: block; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.section--ink .sec-head h2 { color: #fff; }
.section--ink .sec-head p { color: rgba(255, 255, 255, 0.72); }

.marks { margin-top: 20px; }

.marks li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 0.9688rem;
  color: var(--ink);
}

.marks li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 14px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover { transform: translateY(-3px); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.card-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 28px 28px 30px; }
.card-body h3 { font-size: 1.375rem; margin-bottom: 10px; }
.card-body p { font-size: 0.9688rem; line-height: 1.65; }
.card-body .marks { margin-top: 14px; margin-bottom: 24px; }
.card-body .marks li { font-size: 0.9063rem; padding-top: 4px; padding-bottom: 4px; }
.card-body .marks li::before { top: 12px; }
.card-body .btn { margin-top: auto; align-self: flex-start; padding: 13px 26px; min-height: 48px; }

.tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  background: var(--ink);
  border-radius: var(--pill);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), width 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 26px 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: none;
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab:hover { transform: translateY(-2px); }
.tab-ico { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--pill); background: var(--soft); color: var(--accent-deep); }
.tab-ico svg { width: 17px; height: 17px; }
.tab.is-active { background: transparent; color: #fff; box-shadow: none; }
.tabs.has-pill .tab { background: var(--soft); box-shadow: none; transition: color 0.28s ease, background-color 0.28s ease; }
.tabs.has-pill .tab:hover { transform: none; background: #e6e9ee; }
.tabs.has-pill .tab.is-active { background: transparent; color: #fff; }
.tabs.has-pill .tab.is-active:hover { background: transparent; }
.tab.is-active .tab-ico { background: rgba(255, 255, 255, 0.12); color: #8fe0b4; }

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tab-panel.is-active { display: grid; }
.panel-text { min-width: 0; }
.panel-text h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 14px; }
.panel-text p { font-size: 1.0313rem; }
.panel-text p + p { margin-top: 12px; }
.panel-text .marks { margin-top: 22px; }
.panel-text .btn { margin-top: 30px; }

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tile {
  min-width: 0;
  padding: 18px 18px 16px;
  background: var(--soft);
  border-radius: var(--rc);
}

.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; border-radius: 12px; background: #fff; padding: 12px; }
.tile--photo img { object-fit: cover; padding: 0; }
.tile figcaption { margin-top: 12px; font-size: 0.9063rem; font-weight: 600; color: var(--ink); text-align: center; }
.tiles--two .tile img { aspect-ratio: 1 / 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  min-width: 0;
  padding: 32px 30px 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--rc);
}

.step-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 14px; background: rgba(255, 255, 255, 0.08); color: #8fe0b4; }
.step-ico svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.375rem; color: #fff; margin-bottom: 12px; }
.step p { font-size: 0.9688rem; line-height: 1.65; color: rgba(255, 255, 255, 0.74); }

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--rc);
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.gallery-item img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.04); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
  align-self: stretch;
  min-height: 440px;
  max-height: 680px;
  border-radius: var(--rc);
  overflow: hidden;
  background: var(--soft-2);
}

.split-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.split-text { min-width: 0; }
.split-text h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 16px; }
.split-text p { font-size: 1.0313rem; }
.split-text p + p { margin-top: 14px; }
.split-text .btn { margin-top: 26px; }

.contactcard {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #fff;
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form { padding: 52px 56px 48px; }
.contact-form h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 12px; }
.contact-form > p { font-size: 1rem; margin-bottom: 30px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; min-width: 0; }

.field label {
  display: block;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input, .field textarea, .field select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: var(--ri);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: #fff; border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #a3a7ae; }
.field textarea { resize: vertical; min-height: 130px; }
#contact-form { max-width: 100%; min-width: 0; }
.btn-send { width: 100%; margin-top: 8px; }
.ms-recaptcha-notice { text-align: center; }

.contact-side { padding: 52px 44px 48px; background: var(--soft); }
.contact-side h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-lead { font-size: 0.9688rem; margin-bottom: 26px; }

.clist li { display: flex; align-items: flex-start; gap: 14px; }
.clist li + li { margin-top: 16px; }
.clist li > div { display: flex; flex-direction: column; min-width: 0; }
.clist strong { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.clist a, .clist li > div > span { font-size: 0.9688rem; color: var(--body); text-decoration: none; }
.clist a:hover { color: var(--ink); }

.cico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent-deep);
  border-radius: 12px;
}

.cico svg { width: 18px; height: 18px; }

.contact-note { margin-top: 30px; padding: 22px 24px 20px; background: #fff; border-radius: var(--ri); }
.contact-note h4 { font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; margin-bottom: 4px; }
.contact-note .marks { margin-top: 6px; }
.contact-note .marks li { font-size: 0.9063rem; padding-top: 4px; padding-bottom: 4px; }
.contact-note .marks li::before { top: 12px; }

.ctaband {
  position: relative;
  padding: 120px 0;
  overflow: clip;
  background: var(--ink);
}

.ctaband > img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.ctaband-scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(17, 19, 24, 0.74); }
.ctaband-text { position: relative; z-index: 1; text-align: center; }
.ctaband-text h2 { font-size: clamp(2rem, 3.3vw, 2.75rem); color: #fff; margin-bottom: 14px; }
.ctaband-text p { max-width: 600px; margin: 0 auto 30px; font-size: 1.0625rem; color: rgba(255, 255, 255, 0.85); }
.ctaband-text .hero-act { justify-content: center; }

.foot { background: var(--ink); padding: 96px 0 0; color: rgba(255, 255, 255, 0.64); }

.foot-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 56px; align-items: center; padding-bottom: 56px; }
.foot-story h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); color: #fff; margin-bottom: 18px; max-width: 640px; }
.foot-story p { max-width: 560px; font-size: 1.0313rem; line-height: 1.7; margin-bottom: 30px; }
.foot-card { padding: 34px 34px 30px; background: rgba(255, 255, 255, 0.06); border-radius: var(--rc); }
.foot-card h4 { font-family: 'Sora', sans-serif; font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 20px; }
.foot-card .marks--foot { margin-top: 24px; }

.foot-mark { display: flex; flex-direction: column; gap: 14px; padding: 8px 0 40px; }

.foot-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 26px; padding: 8px 0 36px; }
.foot-links a { font-size: 0.9375rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 0.8438rem; color: rgba(255, 255, 255, 0.4); }

.marks--foot { margin-top: 0; }
.marks--foot li { color: rgba(255, 255, 255, 0.7); padding: 4px 0 4px 28px; }
.marks--foot li::before { border-color: #8fe0b4; top: 12px; left: 2px; }
.clist--foot li { gap: 12px; }
.clist--foot li + li { margin-top: 12px; }
.clist--foot .cico { flex-basis: 34px; width: 34px; height: 34px; background: rgba(255, 255, 255, 0.08); color: #8fe0b4; }
.clist--foot .cico svg { width: 16px; height: 16px; }
.clist--foot li > span:not(.cico), .clist--foot li > a { color: rgba(255, 255, 255, 0.64); font-size: 0.9375rem; line-height: 1.5; padding-top: 6px; }
.clist--foot li > a:hover { color: #fff; }
.foot h4 { font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; color: #fff; margin-bottom: 16px; }
.foot li { margin-bottom: 10px; font-size: 0.9375rem; line-height: 1.55; }
.foot a { text-decoration: none; transition: color 0.2s ease; }
.foot a:hover { color: #fff; }

.lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 14, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.lightbox.active { opacity: 1; visibility: visible; transition: opacity 0.28s ease, visibility 0s linear 0s; }
.lightbox img { max-width: 88%; max-height: 84vh; border-radius: var(--rc); }

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--pill);
  color: #fff;
  cursor: pointer;
}

.lb-btn:hover { background: rgba(255, 255, 255, 0.24); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

.reveal { opacity: 1; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

@media (min-width: 981px) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .nav-links > li > a { padding: 10px 9px; font-size: 0.875rem; }
  .topbar-text { display: none; }
  .topbar-inner { justify-content: center; }
  .cards { gap: 16px; }
  .card-body { padding: 24px 22px 26px; }
}

@media (max-width: 980px) {
  :root { --sec-y: 72px; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-actions { margin-left: auto; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, calc(100vw - 40px));
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    border-radius: var(--rc) 0 0 var(--rc);
    z-index: 5;
    box-shadow: -20px 0 44px rgba(10, 12, 16, 0.18);
  }

  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform 0.28s ease, visibility 0s linear 0s; }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 16px 0 14px;
    margin-bottom: 10px;
    background: #fff;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--soft);
    border: none;
    border-radius: var(--pill);
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-menu-close svg { width: 19px; height: 19px; }

  .nav-links > li > a {
    padding: 14px 6px;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
  }

  .mobile-menu-foot { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .nav-links > li.mobile-menu-foot > a.btn { padding: 14px 20px; font-size: 0.9688rem; color: #fff; text-align: center; border-radius: var(--pill); }
  .nav-links > li.mobile-menu-foot > a.btn:hover { background: #2a2e36; }
  .nav-links > li.mobile-menu-foot > a.mobile-menu-tel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0; font-size: 1rem; font-weight: 600; }
  .mobile-menu-tel svg { width: 16px; height: 16px; }

  .hero { padding: 64px 0 72px; }
  .ctaband { padding: 88px 0; }
  .map iframe { height: 340px; }
  .gallery { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { border-radius: 22px; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 20px; }
  .tabs { margin-bottom: 32px; }
  .subhero { min-height: 0; padding: 76px 0 72px; }
  .tiles.tiles--four, .cards--four { grid-template-columns: repeat(2, 1fr); }
  .jump, .jump--four { grid-template-columns: repeat(2, 1fr); }
  .jump-item, .jump--four .jump-item { height: 200px; }
  .jump-item { height: 220px; }
  .tabbox { padding: 24px; border-radius: var(--rc); }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .bshot--big { grid-column: 1 / 3; grid-row: 1 / 2; }
  .bshot--wide { grid-column: 1 / 3; grid-row: 3 / 4; }
  .tab-panel { grid-template-columns: 1fr; gap: 32px; }
  .tab-panel.is-active { display: grid; }
  .tiles { order: -1; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-media { min-height: 0; max-height: none; aspect-ratio: 16 / 10; align-self: auto; }
  .contactcard { grid-template-columns: 1fr; }
  .contact-side { order: -1; padding: 32px 30px; }
  .contact-form { padding: 36px 30px 34px; }
  .foot { padding-top: 64px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .foot-links { padding: 4px 0 28px; }
  .tab { min-height: 52px; padding: 10px 20px 10px 12px; font-size: 0.9375rem; }
}

@media (max-width: 640px) {
  :root { --sec-y: 60px; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 52px 0 60px; }
  .subhero { padding: 60px 0 60px; }
  .subhero-text .hero-act { flex-direction: column; align-items: stretch; }
  .topbar-links { gap: 16px; }
  .ctaband { padding: 72px 0; }
  .hero h1 { font-size: clamp(2.1rem, 8.6vw, 2.6rem); }
  .hero p { font-size: 1.0313rem; }
  .hero-act { flex-direction: column; align-items: stretch; }
  .hero-media { aspect-ratio: 4 / 3; }
  .tab { flex: 1 1 auto; padding: 12px 16px; font-size: 0.9063rem; }
  .tiles { gap: 10px; }
  .tile { padding: 10px 10px 12px; }
  .jump, .jump--four { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-template-rows: 240px 220px 220px 240px; }
  .bshot--big, .bshot--wide { grid-column: auto; grid-row: auto; }
  .tabbox { padding: 16px; }
  .section--tight { padding-top: 56px; padding-bottom: 56px; }
  .sec-foot .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .split-media { aspect-ratio: 4 / 3; }
  .card-body .btn { align-self: stretch; }
  .foot-links { gap: 8px 18px; }
  .foot-card { padding: 24px 22px; }
  .foot-story .hero-act { flex-direction: column; align-items: stretch; }
  .tab { flex: 1 1 calc(50% - 6px); justify-content: center; }
  .lb-prev { left: 10px; top: auto; bottom: 24px; transform: none; }
  .lb-next { right: 10px; top: auto; bottom: 24px; transform: none; }
}

@media (hover: none) {
  a, button { -webkit-tap-highlight-color: transparent; }
  .btn:hover, .card:hover, .tab:hover { transform: none; }
  .card:hover .card-media img { transform: none; }
  .gallery-item:hover img, .bshot:hover img { transform: none; }
  .field input, .field textarea, .field select { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .nav-links, .gallery-item img, .lightbox { transition: none; transform: none; opacity: 1; }
}

.nav-logo { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo img { height: 32px; width: auto; }
.mobile-menu-logo { display: inline-flex; align-items: center; line-height: 0; }
.mobile-menu-logo img { height: 26px; width: auto; }
.foot-logo { display: inline-flex; align-items: center; line-height: 0; margin-bottom: 24px; }
.foot-logo img { height: 34px; width: auto; }
.foot-mark .foot-logo { margin-bottom: 0; }
.foot-mark .foot-logo img { height: 44px; }

.pakets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.paket {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 30px;
  background: #fff;
  border-radius: var(--rc);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.paket:hover { transform: translateY(-3px); }

.paket-media {
  aspect-ratio: 1 / 1;
  padding: 16px;
  background: var(--soft);
  border-radius: var(--ri);
  overflow: hidden;
}

.paket-media img { width: 100%; height: 100%; object-fit: contain; }
.paket-body { display: flex; flex-direction: column; flex: 1 1 auto; padding-top: 22px; }
.paket-body h3 { font-size: 1.375rem; margin-bottom: 8px; }
.paket-body p { font-size: 0.9375rem; line-height: 1.6; }
.paket-body .marks { margin-top: 14px; margin-bottom: 24px; }
.paket-body .marks li { font-size: 0.9063rem; padding-top: 4px; padding-bottom: 4px; }
.paket-body .marks li::before { top: 12px; }
.paket-body .btn { margin-top: auto; align-self: stretch; min-height: 48px; padding: 13px 24px; }

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

.paket-tag {
  position: absolute;
  top: -13px;
  left: 26px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--pill);
}

.paket--featured { background: var(--ink); }
.paket--featured .paket-media { background: rgba(255, 255, 255, 0.08); }
.paket--featured h3 { color: #fff; }
.paket--featured p { color: rgba(255, 255, 255, 0.72); }
.paket--featured .marks li { color: rgba(255, 255, 255, 0.9); }
.paket--featured .marks li::before { border-color: #8fe0b4; }
.paket--featured .btn--ink { background: #fff; color: var(--ink); }
.paket--featured .btn--ink:hover { background: var(--soft); }
.section--grey .paket .paket-media { background: var(--soft-2); }

.paket-wide { display: flex; flex-direction: column; gap: 24px; }

.pw {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  padding: 32px;
  background: #fff;
  border-radius: var(--rc);
  box-shadow: var(--shadow);
}

.pw-media { aspect-ratio: 1 / 1; padding: 20px; background: var(--soft); border-radius: var(--ri); overflow: hidden; }
.pw-media img { width: 100%; height: 100%; object-fit: contain; }
.pw-body { min-width: 0; }
.pw-body h3 { font-size: clamp(1.5rem, 2.3vw, 1.9rem); margin-bottom: 10px; }
.pw-body p { font-size: 1.0313rem; line-height: 1.65; }
.pw-body p + p { margin-top: 10px; }
.pw-body .marks { margin-top: 14px; margin-bottom: 24px; }
.pw-body .btn { min-height: 48px; padding: 13px 26px; }

.pricenote {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--rc);
  font-size: 0.9688rem;
  line-height: 1.65;
  text-align: center;
}

.section--grey .pricenote { background: #fff; }
.section .pricenote { background: var(--soft); }

.split--steps { align-items: start; }
.split--steps .steps { grid-template-columns: 1fr; gap: 22px; margin-top: 8px; }
.split--steps .step { padding: 24px 26px 26px; background: #fff; box-shadow: var(--shadow); }
.split--steps .step h3 { font-size: 1.1875rem; color: var(--ink); margin-bottom: 8px; }
.split--steps .step p { font-size: 0.9688rem; color: var(--body); }
.split-media--graphic { background: #fff; }
.split-media--graphic img { object-fit: contain; padding: 32px; }
.contact-note-btn { width: 100%; margin-top: 20px; }

@media (max-width: 1180px) {
  .pakets { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pakets--three { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav-logo img { height: 28px; }
  .pakets, .pakets--three { grid-template-columns: repeat(2, 1fr); }
  .pw { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .pw-media { max-width: 320px; }
  .split--steps { grid-template-columns: 1fr; }
  .split--steps .split-media { aspect-ratio: 16 / 10; }
  .pricenote { margin-top: 32px; }
}

@media (max-width: 640px) {
  .pakets, .pakets--three { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .paket { padding: 22px 22px 26px; }
  .paket-tag { left: 22px; }
  .pw-media { max-width: none; }
  .pw-body .btn { width: 100%; }
  .foot-mark .foot-logo img { height: 34px; }
}

.section:not(.section--grey) .paket { background: var(--soft); box-shadow: none; }
.section:not(.section--grey) .paket .paket-media { background: #fff; }
.section:not(.section--grey) .paket--featured { background: var(--ink); }
.section:not(.section--grey) .paket--featured .paket-media { background: rgba(255, 255, 255, 0.08); }
.section--grey .tabbox { background: #fff; }
.section--grey .tabbox .tile { background: var(--soft); }
.section--grey .tabbox .tile img { background: #fff; }
.section--grey .tabbox .tile--photo img { background: none; }
.section--grey .tab { background: #fff; }
.section--grey .tabs.has-pill .tab { background: #fff; }
.section--grey .tabs.has-pill .tab:hover { background: #e6e9ee; }
.section--grey .tabs.has-pill .tab.is-active { background: transparent; }

.jump-item--render { background: var(--soft); }
.jump-item--render img { object-fit: contain; padding: 26px 26px 68px; }
.section--grey .jump-item--render { background: #fff; }

@media (min-width: 768px) {
  .nav { position: sticky; }
}
