:root {
  --bg: #0b1118;
  --panel: #111b27;
  --panel-soft: #152232;
  --text: #e6edf5;
  --muted: #a6b2c0;
  --line: #26384c;
  --accent: #c5914a;
  --accent-2: #e1b26d;
  --ok: #79d7a8;
  --danger: #ff7f8e;
  --max: 1200px;
  --radius: 16px;
  --brand-logo: url("./brand-logo-full.png");
  --brand-mark: url("./brand-logo-mark.png");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 92px;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -10%, #1f2f44, transparent 32%),
    radial-gradient(circle at 88% 0%, #36251a, transparent 28%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 44vmax;
  height: 44vmax;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

body::before {
  top: -18vmax;
  right: -12vmax;
  background: radial-gradient(circle, rgb(218 163 87 / 24%) 0%, transparent 62%);
  animation: drift 16s ease-in-out infinite;
}

body::after {
  bottom: -20vmax;
  left: -14vmax;
  background: radial-gradient(circle, rgb(95 66 38 / 28%) 0%, transparent 62%);
  animation: drift 19s ease-in-out infinite reverse;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgb(11 17 24 / 84%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 8%, rgb(255 230 170 / 22%), transparent 36%),
    var(--brand-mark) center / cover no-repeat,
    linear-gradient(145deg, #253243, #111b27);
  border: 1px solid #7a5933;
  display: grid;
  place-items: center;
  color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 8px 20px rgb(0 0 0 / 28%);
}

.brand h1 {
  margin: 0;
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  font-family: "Cinzel", "Space Grotesk", serif;
  color: #f1cb82;
  text-shadow: 0 0 18px rgb(197 145 74 / 25%);
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  gap: 0.88rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #9d6f35, #f0d89f);
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-link {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.hero {
  padding: 6.3rem 0 4.8rem;
}

.motto-section + .hero {
  padding-top: 1.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.hero p {
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}

.hero-subtitle {
  margin: 0 0 1rem;
  color: #233853;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #735028;
  background: linear-gradient(120deg, rgb(197 145 74 / 22%), rgb(27 20 13 / 74%));
  color: #f2d7a2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-benefits {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-benefits article {
  border: 1px solid #3f3020;
  border-radius: 12px;
  background: linear-gradient(170deg, rgb(255 210 135 / 10%), rgb(13 18 25 / 82%));
  padding: 0.8rem;
  color: #c6d0dc;
  font-size: 0.9rem;
}

.hero-benefits strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #f2d7a2;
  font-size: 0.9rem;
}

.motto-section {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.motto-banner {
  position: relative;
  border: 1px solid #7a5933;
  border-radius: 20px;
  padding: 1.3rem 1.25rem 1.4rem;
  background:
    radial-gradient(circle at 20% 0%, rgb(255 215 138 / 18%), transparent 40%),
    linear-gradient(145deg, rgb(22 17 12 / 92%), rgb(10 14 20 / 95%));
  box-shadow: 0 20px 40px rgb(0 0 0 / 38%);
}

.motto-banner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgb(255 221 160 / 56%), transparent 35%, transparent 65%, rgb(255 221 160 / 56%));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.motto-kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #d9b370;
}

.motto-banner blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.32;
  font-weight: 700;
  color: #f8e3be;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  text-wrap: balance;
}

.cta-row {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #0f1114;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgb(197 145 74 / 24%);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 36%, rgb(255 243 196 / 45%) 50%, transparent 64%);
  transform: translateX(-120%);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  animation: sweep 1.2s ease;
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.hero-card {
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 16%, rgb(255 205 120 / 22%), transparent 36%),
    linear-gradient(165deg, rgb(255 255 255 / 5%), transparent),
    var(--panel);
  border: 1px solid #4f3a21;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgb(0 0 0 / 32%);
  position: relative;
  overflow: hidden;
}

.logo-showcase {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid #7a5933;
  background:
    radial-gradient(circle at 50% 10%, rgb(255 216 130 / 20%), transparent 42%),
    var(--brand-logo) center / contain no-repeat,
    #090c11;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.logo-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgb(255 233 175 / 18%) 52%, transparent 64%);
  transform: translateX(-100%);
  animation: shimmer 5s ease-in-out infinite;
}

.hero-card h3 {
  margin: 0 0 0.72rem;
  font-size: 1.05rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgb(255 214 136 / 54%), transparent 28%, transparent 72%, rgb(255 214 136 / 54%));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  background: var(--panel-soft);
  border: 1px solid #30475e;
  border-radius: 12px;
  padding: 0.82rem;
}

.stat strong {
  display: block;
  font-size: 1.12rem;
  color: var(--accent-2);
}

.section {
  padding: 3.8rem 0;
}

.section h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.card h4 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.card p,
.card li {
  color: var(--muted);
  margin: 0;
}

.card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgb(228 178 101 / 18%), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: #7a5933;
  box-shadow: 0 14px 28px rgb(0 0 0 / 30%);
}

.card:hover::after,
.card:focus-within::after {
  opacity: 1;
}

.price-placeholder,
.placeholder {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed #456280;
  background: #0f1924;
  border-radius: 14px;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.layout-2 {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.form-card {
  margin-top: 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 12px 24px rgb(0 0 0 / 22%);
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d2dbea;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #35506c;
  background: #0f1823;
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.small-note {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status {
  margin-top: 0.9rem;
  font-weight: 700;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

footer {
  border-top: 1px solid #213349;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-share {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: linear-gradient(120deg, #c5914a, #e1b26d);
  color: #0f1114;
  border: 1px solid #7a5933;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 14px 28px rgb(0 0 0 / 32%);
}

.whatsapp-share:hover,
.whatsapp-share:focus-visible {
  transform: translateY(-1px);
}

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7a5933;
  background: linear-gradient(120deg, rgb(197 145 74 / 30%), rgb(17 22 30 / 90%));
  color: #f3ddb0;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

body.client-zone-page {
  background: #0d1621;
}

body.client-zone-page::before,
body.client-zone-page::after {
  display: none;
}

.client-zone-page .client-zone-section {
  min-height: calc(100vh - 180px);
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  padding-top: 2rem;
}

.client-zone-page .client-zone-section::before {
  display: none;
}

.client-zone-section {
  position: relative;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  background: #0d1621;
  border-top: 1px solid #31465c;
  border-bottom: 1px solid #31465c;
}

.client-zone-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #55748f, transparent);
  opacity: 0.35;
}

.client-zone-section .section-intro {
  color: #b9c6d5;
}

.portal-shell {
  margin-top: 1.2rem;
  border: 1px solid #32495f;
  border-radius: 14px;
  background: #121d2b;
  padding: 1.15rem;
  box-shadow: none;
}

.portal-guest h4,
.portal-app h4 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.portal-mini-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #2d4259;
  padding-bottom: 0.8rem;
}

.portal-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  color: #c79a57;
  font-weight: 700;
}

.portal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.portal-plan-badge {
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  border: 1px solid #6f502d;
  color: #f5ddb2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.portal-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.portal-order-form .full {
  grid-column: 1 / -1;
}

.portal-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
}

.portal-nav {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.portal-nav button {
  text-align: left;
  border: 1px solid #2f475f;
  background: #111b29;
  color: #d5deea;
  border-radius: 10px;
  padding: 0.55rem 0.68rem;
  cursor: pointer;
  font: inherit;
}

.portal-nav button.is-active {
  border-color: #7391ab;
  background: #203246;
  color: #e6eef7;
}

.portal-content {
  min-height: 420px;
}

.portal-panel {
  display: none;
}

.portal-panel.is-active {
  display: block;
}

.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.portal-metric {
  border: 1px solid #2f4a62;
  border-radius: 10px;
  padding: 0.8rem;
  color: #b8c4d3;
  background: #0f1824;
}

.portal-metric strong {
  display: block;
  color: #f2d7a4;
  font-size: 1.24rem;
}

.portal-list {
  display: grid;
  gap: 0.75rem;
}

.portal-item {
  border: 1px solid #2f465e;
  border-radius: 10px;
  background: #0f1824;
  padding: 0.8rem;
}

.portal-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.portal-table {
  min-width: 740px;
}

.portal-panel .table-wrap {
  overflow: auto;
  border: 1px solid #2f465e;
  border-radius: 12px;
  background: #0f1824;
}

.portal-table th,
.portal-table td {
  border-bottom: 1px solid #2f475f;
  padding: 0.6rem;
  text-align: left;
  font-size: 0.88rem;
}

.portal-table th {
  color: #c8d8ea;
}

.portal-service-picker {
  border: 1px solid #324b61;
  border-radius: 12px;
  padding: 0.8rem;
  background: #0d1722;
  display: grid;
  gap: 0.45rem;
}

.portal-service-picker legend {
  padding: 0 0.35rem;
  color: #c8d8ea;
  font-weight: 700;
}

.portal-service-picker label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #c5d2e0;
}

.portal-service-picker input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(5 9 13 / 72%);
  backdrop-filter: blur(6px);
}

.auth-dialog {
  position: relative;
  width: min(100% - 2rem, 480px);
  margin: 6vh auto 0;
  border: 1px solid #3d5670;
  background: #101a26;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 22px 44px rgb(0 0 0 / 38%);
}

.auth-close {
  position: absolute;
  right: 0.7rem;
  top: 0.55rem;
  border: 0;
  background: transparent;
  color: #d8e1ee;
  font-size: 1.45rem;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding-right: 1.4rem;
}

.auth-tabs button {
  border: 1px solid #2e465f;
  border-radius: 10px;
  background: #0f1824;
  color: #d0d9e6;
  padding: 0.44rem 0.75rem;
  cursor: pointer;
}

.auth-tabs button.is-active {
  border-color: #7a5933;
  color: #f3ddb0;
}

.auth-form {
  display: none;
  gap: 0.7rem;
}

.auth-form.is-active {
  display: grid;
}

.auth-form .btn {
  margin-top: 0.3rem;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: #b7c4d6;
}

.auth-status {
  margin: 0.7rem 0 0;
  font-weight: 700;
  min-height: 1.2rem;
}

.email-info-modal {
  position: fixed;
  inset: 0;
  z-index: 62;
}

.email-info-dialog h4 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  45%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes sweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2vmax, 1.5vmax);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .cards,
  .layout-2,
  .grid-form,
  .portal-order-form {
    grid-template-columns: 1fr;
  }

  .portal-mini-grid,
  .portal-cards {
    grid-template-columns: 1fr;
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.2rem;
  }

  .motto-section + .hero {
    padding-top: 1.3rem;
  }
}

@media (max-width: 660px) {
  html {
    scroll-padding-top: 132px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.7rem 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .auth-dialog {
    width: min(100% - 1rem, 480px);
    margin-top: 2vh;
  }
}

/* AK Kessler redesign override */
:root {
  --bg: #f6f1e8;
  --panel: #ffffff;
  --panel-soft: #fcfaf6;
  --text: #1c2633;
  --muted: #4c5b6c;
  --line: #d6ccbc;
  --accent: #b08d57;
  --accent-2: #cfb48a;
  --max: 1180px;
}

html {
  scroll-padding-top: 94px;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgb(177 143 88 / 13%), transparent 28%),
    radial-gradient(circle at 100% 0%, rgb(31 54 79 / 10%), transparent 26%),
    var(--bg);
}

body::before,
body::after {
  display: none;
}

.topbar {
  background: rgb(246 241 232 / 92%);
  border-bottom: 1px solid #d9cfbf;
  backdrop-filter: blur(8px);
}

.brand-mark {
  color: #f7f3ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background:
    linear-gradient(155deg, #152438, #0f1b2d),
    linear-gradient(120deg, #cab084, #a7844f);
  border-color: #8c6d3e;
}

.brand h1 {
  color: #152438;
  text-shadow: none;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.07em;
  font-size: 1.16rem;
}

.brand p {
  color: #506177;
  font-size: 0.82rem;
}

.nav a {
  color: #425265;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: #0f1c2e;
}

.nav a::after {
  background: linear-gradient(90deg, #a8854e, #d2bb96);
}

.lang-link {
  border-color: #cbbda8;
  background: #fffdfa;
}

.hero {
  padding: 5.3rem 0 3.6rem;
}

.hero-grid {
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.1rem;
}

.eyebrow {
  color: #7f6234;
}

.hero h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.96;
  margin-bottom: 0.9rem;
  color: #101d31;
}

.hero p {
  color: #47586c;
  font-size: 1.08rem;
}

.hero-pill {
  border: 1px solid #ccb998;
  background: #fffaf2;
  color: #6a4d25;
}

.hero-benefits article {
  border: 1px solid #d8ccbb;
  background: #fffdfa;
  color: #485b70;
}

.hero-benefits strong {
  color: #122238;
}

.btn {
  border-radius: 11px;
}

.btn-primary {
  color: #f8f4eb;
  background: linear-gradient(120deg, #15273f, #273d5b);
  box-shadow: 0 14px 26px rgb(20 38 60 / 22%);
}

.btn-secondary {
  color: #15273f;
  border-color: #cbbda8;
  background: #fffdfa;
}

.hero-card {
  border: 1px solid #d7cbba;
  background:
    radial-gradient(circle at 80% 0%, rgb(208 181 137 / 28%), transparent 34%),
    linear-gradient(180deg, #fffdf9, #f5efe5);
  box-shadow: 0 20px 38px rgb(47 58 72 / 12%);
}

.hero-profile-card h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0.15rem 0 0.4rem;
  font-size: 1.7rem;
  color: #142237;
}

.hero-profile-card > p {
  color: #506177;
}

.hero-portrait-wrap {
  margin: 0 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d8ccba;
  background: #efe8dc;
}

.hero-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stat {
  background: #fffcf7;
  border-color: #d6cab7;
}

.stat strong {
  color: #14233a;
}

.section {
  padding: 4.2rem 0;
}

.section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  color: #101e32;
}

.section-intro {
  color: #4a5d70;
  max-width: 74ch;
}

.cards {
  gap: 1rem;
}

.legal-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid #d9cebe;
  border-radius: 14px;
  background: #fffdfa;
  box-shadow: 0 16px 28px rgb(35 46 58 / 6%);
}

.card::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgb(176 141 87 / 18%), transparent 42%);
}

.card h4 {
  color: #142238;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.card p,
.card li {
  color: #4c5e72;
}

.profile-layout {
  align-items: stretch;
}

.profile-photo-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.speaker-photo {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d6c9b6;
  display: block;
  background: #ece4d6;
}

.form-card {
  background: #fffdf8;
  border: 1px solid #d8ccb9;
}

.form-card h4 {
  font-family: "Cormorant Garamond", serif;
  color: #112137;
}

input,
select,
textarea {
  border-color: #cfc3af;
  background: #fffefb;
  color: #1d2a3b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #a98654;
  box-shadow: 0 0 0 3px rgb(176 141 87 / 18%);
}

.form-status.ok {
  color: #1f5d3e;
}

.form-status.error {
  color: #7c2030;
}

.faq-list details {
  border: 1px solid #d7cbba;
  background: #fffdf8;
}

.faq-list summary {
  color: #17263d;
}

footer {
  border-top: 1px solid #d8cdbe;
  color: #46586b;
  background: #f0e9dd;
}

footer a {
  color: #1b2e47;
}

.whatsapp-share {
  background: #19365a;
  color: #fff9ee;
}

@media (max-width: 1024px) {
  .legal-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .hero {
    padding-top: 4.8rem;
  }

  .hero h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

/* Final AK Kessler logo integration */
:root {
  --ak-logo-mark: url("./logo-kessler-ref-1536x1024.png");
}

.topbar-inner {
  min-height: 96px;
}

.brand {
  gap: 1rem;
}

.brand-mark {
  width: 182px;
  height: 114px;
  border-radius: 10px;
  background: transparent var(--ak-logo-mark) center / 138% auto no-repeat !important;
  border: 0;
  color: transparent;
  text-indent: -9999px;
  box-shadow: none;
}

@media (max-width: 660px) {
  .topbar-inner {
    min-height: 84px;
  }

  .brand-mark {
    width: 138px;
    height: 86px;
  }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  border: 1px solid #d7ccbb;
  border-radius: 14px;
  background: #fffdfa;
  box-shadow: 0 14px 36px rgb(25 35 49 / 16%);
}

.cookie-banner-inner {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.cookie-banner p {
  margin: 0;
  color: #33485e;
  font-size: 0.95rem;
}

.cookie-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-link {
  color: #17304e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-status {
  margin: 0;
  color: #42566d;
  font-size: 0.85rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgb(10 14 20 / 42%);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal-card {
  width: min(100%, 640px);
  background: #fffdfa;
  border: 1px solid #d7ccbb;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgb(17 28 42 / 25%);
  padding: 1.1rem;
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.cookie-modal-head h4 {
  margin: 0;
  color: #14233a;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.cookie-close {
  border: 1px solid #d6c9b6;
  background: #fff;
  color: #23354a;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.cookie-modal-card > p {
  margin: 0 0 1rem;
  color: #3d4f65;
}

.cookie-options {
  display: grid;
  gap: 0.7rem;
}

.cookie-option {
  border: 1px solid #dbcfbe;
  border-radius: 12px;
  padding: 0.7rem;
  background: #fff;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #21354d;
  font-weight: 700;
}

.cookie-option small {
  display: block;
  margin-top: 0.3rem;
  color: #556980;
  font-weight: 400;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.15rem;
}

.cookie-option.is-required {
  background: #faf5eb;
}

.cookie-option.is-required input {
  accent-color: #a8844f;
}

@media (max-width: 660px) {
  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .cookie-modal-card {
    padding: 0.95rem;
  }
}
