:root {
  --bg: #f5eee6;
  --surface: #fffaf7;
  --panel: #f0ded1;
  --text: #211b17;
  --muted: #7a6b62;
  --accent: #c08468;
  --accent-dark: #6c3f32;
  --shadow: 0 22px 80px rgba(55, 39, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 24%, transparent), transparent 34rem),
    linear-gradient(180deg, var(--panel), var(--bg) 36%, color-mix(in srgb, var(--accent-dark) 8%, var(--bg)));
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-body {
  background: #f4f0ea;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

.hidden {
  display: none !important;
}

.bio-page {
  display: grid;
  min-height: 100vh;
  padding: 28px 16px;
  place-items: start center;
}

.bio-card {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 620px;
  overflow: hidden;
  width: 100%;
}

.cover {
  height: 178px;
  position: relative;
}

.cover::after {
  background: linear-gradient(180deg, transparent, rgba(33, 27, 23, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.cover img {
  height: 100%;
  object-fit: cover;
}

.profile {
  display: grid;
  justify-items: center;
  padding: 0 24px 20px;
  text-align: center;
}

.avatar {
  aspect-ratio: 1;
  background: var(--panel);
  border: 5px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(55, 39, 30, 0.18);
  height: 116px;
  margin-top: -58px;
  object-fit: cover;
  position: relative;
  width: 116px;
  z-index: 2;
}

.lang-switch {
  align-items: center;
  background: var(--panel);
  border-radius: 999px;
  display: flex;
  gap: 3px;
  margin-top: 16px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  min-width: 42px;
  padding: 8px 10px;
}

.lang-btn.active {
  background: var(--surface);
  color: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(55, 39, 30, 0.12);
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  margin: 18px 0 4px;
}

.handle {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.bio {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  margin: 12px auto 0;
  max-width: 360px;
}

.social-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 24px 20px;
}

.social-row a,
.quick span,
.link-icon {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  justify-content: center;
}

.social-row a {
  background: var(--text);
  color: var(--surface);
  font-size: 18px;
  height: 42px;
  width: 42px;
}

.quick-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding: 0 18px 18px;
}

.quick-actions[data-visible-count="1"] {
  grid-template-columns: minmax(160px, 260px);
}

.quick-actions[data-visible-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick {
  align-items: center;
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 18px;
  display: grid;
  gap: 9px;
  justify-items: center;
  min-width: 0;
  min-height: 92px;
  padding: 12px 8px;
}

.quick span {
  background: var(--surface);
  color: var(--accent-dark);
  height: 38px;
  width: 38px;
}

.quick-icon::before {
  background: currentColor;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.quick-icon[data-icon="whatsapp"]::before {
  clip-path: polygon(50% 0, 74% 7%, 93% 26%, 100% 50%, 93% 74%, 74% 93%, 50% 100%, 28% 94%, 5% 100%, 11% 78%, 0 50%, 7% 26%, 26% 7%);
}

.quick-icon[data-icon="phone"]::before {
  clip-path: polygon(20% 0, 48% 6%, 55% 28%, 42% 40%, 60% 62%, 72% 49%, 94% 56%, 100% 84%, 87% 100%, 70% 96%, 45% 82%, 18% 55%, 4% 30%, 0 13%);
}

.quick-icon[data-icon="map"]::before {
  clip-path: polygon(50% 0, 70% 8%, 84% 24%, 89% 44%, 82% 66%, 50% 100%, 18% 66%, 11% 44%, 16% 24%, 30% 8%);
}

.quick strong {
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
}

.link-list {
  display: grid;
  gap: 12px;
  padding: 0 18px 22px;
}

.bio-link {
  align-items: center;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(55, 39, 30, 0.08);
  display: grid;
  gap: 13px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.bio-link:hover {
  box-shadow: 0 16px 36px rgba(55, 39, 30, 0.13);
  transform: translateY(-2px);
}

.link-icon {
  background: var(--accent);
  color: white;
  height: 46px;
  width: 46px;
}

.link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.link-copy strong {
  font-size: 16px;
  line-height: 1.25;
}

.link-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.link-arrow {
  color: var(--accent-dark);
  font-size: 30px;
}

.mini-section,
.contact-panel {
  padding: 22px 18px;
}

.section-title {
  margin-bottom: 14px;
  text-align: center;
}

.section-title span {
  color: var(--accent-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-chip {
  background: color-mix(in srgb, var(--panel) 78%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 750;
  padding: 9px 12px;
}

.story-grid {
  display: grid;
  gap: 10px;
  grid-auto-columns: calc((100% - 10px) / 2);
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 4px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.story-grid[data-count="1"] {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow-x: hidden;
}

.story-grid[data-count="2"] {
  grid-auto-columns: calc((100% - 10px) / 2);
  grid-template-rows: 1fr;
  overflow-x: hidden;
}

.story-grid::-webkit-scrollbar {
  height: 7px;
}

.story-grid::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent-dark) 32%, transparent);
  border-radius: 999px;
}

.story-grid img {
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  scroll-snap-align: start;
}

.story-grid img:first-child {
  grid-row: auto;
  height: auto;
}

.story-grid[data-count="1"] img:first-child,
.story-grid[data-count="2"] img:first-child {
  grid-row: auto;
  height: auto;
}

.contact-panel {
  background: var(--accent-dark);
  color: white;
  display: grid;
  gap: 14px;
  text-align: center;
}

.contact-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.16;
  margin: 0;
}

.main-cta {
  background: white;
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 900;
  justify-self: center;
  padding: 14px 18px;
}

.contact-lines {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-size: 13px;
  gap: 4px;
}

.bio-footer {
  background: color-mix(in srgb, var(--accent-dark) 10%, var(--surface));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px;
}

.bio-footer a {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.cookie-banner {
  align-items: center;
  background: rgba(33, 27, 23, 0.96);
  border-radius: 16px;
  bottom: 16px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  color: white;
  display: grid;
  gap: 12px;
  left: 50%;
  max-width: 620px;
  padding: 16px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 30;
}

.cookie-banner p {
  line-height: 1.55;
  margin: 0;
}

.cookie-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-actions a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.cookie-actions button {
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-weight: 900;
  padding: 11px 16px;
}

.chat-widget {
  bottom: 18px;
  position: fixed;
  right: 18px;
  z-index: 20;
}

.chat-toggle {
  background: var(--accent-dark);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(33, 27, 23, 0.24);
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  padding: 0 18px;
}

.chat-panel {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 18px;
  bottom: 64px;
  box-shadow: 0 18px 60px rgba(33, 27, 23, 0.22);
  display: grid;
  gap: 12px;
  max-width: calc(100vw - 32px);
  padding: 14px;
  position: absolute;
  right: 0;
  width: 340px;
}

.chat-header {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.chat-header strong {
  color: var(--text);
  display: block;
  font-size: 16px;
}

.chat-header p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 4px 0 0;
}

.chat-header button {
  background: var(--panel);
  border: 0;
  border-radius: 50%;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
  height: 30px;
  width: 30px;
}

.chat-messages {
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow-y: auto;
}

.chat-message {
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  padding: 10px 12px;
}

.chat-message.assistant {
  background: var(--panel);
  color: var(--text);
  justify-self: start;
}

.chat-message.user {
  background: var(--accent-dark);
  color: white;
  justify-self: end;
}

.chat-quick-replies {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.chat-quick-replies button {
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  min-height: 40px;
  padding: 9px 10px;
  text-align: left;
}

.chat-quick-replies button:hover,
.chat-quick-replies button:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.chat-quick-replies button:disabled {
  cursor: default;
  opacity: 0.55;
}

.chat-lead-form,
.chat-form {
  display: grid;
  gap: 8px;
}

.chat-phone-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 86px 1fr;
}

.chat-lang-switch {
  background: var(--panel);
  border-radius: 999px;
  display: inline-flex;
  gap: 3px;
  justify-self: start;
  padding: 4px;
}

.chat-lang-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.chat-lang-switch button.active {
  background: var(--surface);
  color: var(--accent-dark);
}

.chat-form {
  grid-template-columns: 1fr auto;
}

.chat-lead-form input,
.chat-form input {
  min-height: 42px;
}

.chat-lead-form button,
.chat-form button {
  background: var(--accent-dark);
  border: 0;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  padding: 0 14px;
}

.chat-end {
  background: transparent;
  border: 0;
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  justify-self: center;
  padding: 4px 8px;
}

.policy-page {
  display: grid;
  min-height: 100vh;
  padding: 32px 16px;
  place-items: start center;
}

.policy-card {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 780px;
  padding: clamp(24px, 5vw, 46px);
}

.policy-card h1 {
  font-size: clamp(34px, 6vw, 58px);
  margin-bottom: 18px;
}

.policy-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  white-space: pre-line;
}

.policy-back {
  color: var(--accent-dark);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 24px;
}

.admin-shell {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.admin-alert {
  background: #e9f7ef;
  border: 1px solid #bde5ca;
  border-radius: 8px;
  color: #226139;
  font-weight: 800;
  padding: 14px 16px;
}

.admin-alert[data-type="error"] {
  background: #fff1ee;
  border-color: #f2c8be;
  color: #9b321e;
}

.admin-confirm {
  align-items: center;
  background: #fffaf7;
  border: 1px solid #d9c7b8;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  margin-top: 8px;
  padding: 14px 16px;
}

.admin-confirm p {
  color: #211b17;
  margin: 0;
}

.admin-confirm-actions {
  display: flex;
  gap: 8px;
}

.stats-confirm {
  margin-top: 14px;
}

@media (max-width: 680px) {
  .admin-confirm {
    grid-template-columns: 1fr;
  }
}

.admin-header,
.admin-panel {
  background: white;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(54, 42, 33, 0.08);
  padding: 22px;
}

.admin-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.eyebrow {
  color: #9a644f;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.admin-header h1 {
  color: #1e1b18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  margin: 0;
}

.admin-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 10px;
}

.admin-copy {
  color: #7a6b62;
  line-height: 1.6;
  margin: 0 0 18px;
}

.login-form {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.button.primary {
  background: #6f4635;
  color: white;
}

.button.secondary {
  background: #efe2d5;
  border-color: #d9c7b8;
  color: #6f4635;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-btn {
  background: #efe2d5;
  border: 0;
  border-radius: 999px;
  color: #6f4635;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 10px 14px;
}

.tab-btn.active {
  background: #6f4635;
  color: white;
}

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

.wide-grid {
  display: grid;
  gap: 16px;
}

.toggle-row {
  align-items: center;
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.toggle-row span {
  color: #211b17;
  font-weight: 800;
}

.toggle-row input {
  min-height: auto;
  width: auto;
}

.editor-block {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.editor-block.hidden {
  display: none;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

[data-language-editor] {
  display: grid;
  gap: 14px;
}

.editor-subtitle {
  color: #6f4635;
  font-size: 18px;
  margin: 14px 0 0;
}

.editor-group {
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.editor-group h4 {
  color: #211b17;
  font-size: 15px;
  margin: 0;
}

.editor-mini-title {
  color: #6f4635;
  font-size: 13px;
  font-weight: 850;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.quick-reply-editor {
  background: #fffaf7;
  gap: 10px;
  padding: 12px;
}

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

.stat-card {
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.stat-card span {
  color: #7a6b62;
  font-size: 13px;
  font-weight: 800;
}

.stat-card strong {
  color: #211b17;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.stat-card small {
  color: #6f4635;
  font-weight: 800;
}

.stats-list {
  display: grid;
  gap: 8px;
}

.stats-row {
  align-items: center;
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 11px 12px;
}

.stats-row span {
  color: #211b17;
  font-weight: 750;
}

.stats-row strong {
  color: #6f4635;
}

.lead-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-toolbar input,
.lead-toolbar select {
  min-height: 40px;
  width: 220px;
}

.lead-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.lead-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.lead-summary-card {
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.lead-summary-card span {
  color: #7a6b62;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.lead-summary-card strong {
  color: #211b17;
  font-size: 22px;
}

.lead-row {
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.lead-card-head {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
}

.lead-check {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.lead-check input {
  min-height: auto;
  width: auto;
}

.lead-title {
  display: grid;
  gap: 3px;
}

.lead-title strong {
  color: #211b17;
  font-size: 16px;
}

.lead-title small {
  color: #7a6b62;
  font-size: 12px;
}

.lead-status-badge {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  min-width: 88px;
  padding: 6px 10px;
  text-align: center;
  text-transform: uppercase;
}

.lead-status-badge[data-status="new"] {
  background: #dbeafe;
  color: #1d4ed8;
}

.lead-status-badge[data-status="contacted"] {
  background: #fef3c7;
  color: #92400e;
}

.lead-status-badge[data-status="booked"] {
  background: #dcfce7;
  color: #166534;
}

.lead-status-badge[data-status="closed"] {
  background: #fee2e2;
  color: #991b1b;
}

.lead-contact-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-contact-grid div {
  background: #ffffff;
  border: 1px solid #eee3da;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.lead-contact-grid small,
.lead-status-control span,
.lead-note-control span {
  color: #7a6b62;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-contact-grid span {
  color: #211b17;
  font-size: 13px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.lead-message-preview {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: #7c2d12;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.lead-controls {
  display: grid;
  gap: 10px;
  grid-template-columns: 160px minmax(180px, 1fr) auto;
}

.lead-status-control,
.lead-note-control {
  display: grid;
  gap: 6px;
}

.lead-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.lead-actions .button {
  min-height: 40px;
}

.button.danger {
  border-color: #fecaca;
  color: #991b1b;
}

.chat-viewer {
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
}

.lead-chat-viewer {
  background: #fff7ed;
  border-color: #d97706;
  box-shadow: inset 3px 0 0 #d97706;
}

.bulk-message-box {
  border-top: 1px solid #e6ddd4;
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
}

.bulk-message-box h4 {
  margin: 0;
}

.bulk-output {
  background: #fffaf7;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.bulk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-viewer-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.chat-viewer-messages {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.chat-log {
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  padding: 8px 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-log.user {
  background: #ffedd5;
  border: 1px solid #fdba74;
  color: #7c2d12;
}

.chat-log.assistant {
  background: #fffaf7;
  border: 1px solid #e6ddd4;
}

.field span {
  color: #7a6b62;
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  background: #fffaf7;
  border: 1px solid #d9c7b8;
  border-radius: 8px;
  color: #211b17;
  min-height: 44px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

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

.image-preview-box {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #f4f0ea;
  border: 1px solid #e6ddd4;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  max-height: 170px;
  overflow: hidden;
  width: 100%;
}

.image-preview {
  height: 100%;
  max-height: 170px;
  object-fit: cover;
  width: 100%;
}

.image-preview[data-broken="true"] {
  opacity: 0.35;
}

.gallery-admin-group {
  grid-column: 1 / -1;
}

.gallery-admin-row {
  align-items: start;
  border-top: 1px solid #e6ddd4;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding-top: 12px;
}

.gallery-admin-actions {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.gallery-admin-actions .button:disabled,
.gallery-admin-group > .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.json-editor {
  min-height: 520px;
  white-space: pre;
}

.status {
  color: #6f4635;
  font-weight: 750;
  min-height: 22px;
}

@media (max-width: 680px) {
  .bio-page {
    padding: 0;
  }

  .quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 12px;
  }

  .quick {
    border-radius: 16px;
    min-height: 86px;
    padding-inline: 6px;
  }

  .bio-card {
    border: 0;
    border-radius: 0;
    max-width: none;
    min-height: 100vh;
  }

  .cover {
    height: 168px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .chat-widget {
    bottom: 12px;
    right: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-shell {
    gap: 14px;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 12px;
    width: 100%;
  }

  .admin-header,
  .admin-panel {
    max-width: calc(100vw - 24px);
    min-width: 0;
    overflow: hidden;
    padding: 18px;
    width: 100%;
  }

  .admin-actions,
  .login-form {
    max-width: none;
    width: 100%;
  }

  .admin-actions .button {
    flex: 1 1 140px;
  }

  .admin-header .admin-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-header .admin-lang-switch {
    justify-self: start;
  }

  .admin-header .button {
    width: 100%;
  }

  .admin-grid,
  .color-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-admin-row {
    grid-template-columns: 1fr;
  }

  .lead-controls {
    grid-template-columns: 1fr;
  }
}

body.theme-luxury {
  --bg: #0f0d0b;
  --surface: #18130f;
  --panel: #211913;
  --text: #fff7ea;
  --muted: #c8aa78;
  --accent: #d5a84d;
  --accent-dark: #9c6f22;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  background:
    radial-gradient(circle at top, rgba(213, 168, 77, 0.18), transparent 32rem),
    linear-gradient(180deg, #19110c, #0f0d0b 48%, #17100c);
}

body.theme-luxury .bio-card,
body.theme-luxury .service-chip,
body.theme-luxury .bio-link,
body.theme-luxury .story-grid img,
body.theme-luxury .chat-panel {
  border-color: rgba(213, 168, 77, 0.28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

body.theme-luxury .bio-card {
  background: linear-gradient(180deg, rgba(33, 25, 19, 0.96), rgba(18, 14, 11, 0.98));
}

body.theme-luxury .cover::after {
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.08), rgba(15, 13, 11, 0.82));
}

body.theme-luxury .avatar {
  border-color: rgba(213, 168, 77, 0.74);
  box-shadow: 0 12px 34px rgba(213, 168, 77, 0.18);
}

body.theme-luxury .quick,
body.theme-luxury .lang-btn.active,
body.theme-luxury .chat-send,
body.theme-luxury .chat-start,
body.theme-luxury .chat-toggle {
  background: linear-gradient(135deg, #d8b25c, #9c6f22);
  color: #120d09;
}

body.theme-luxury .quick span {
  background: rgba(18, 13, 9, 0.72);
  color: #f4d58a;
}

body.theme-luxury .bio-link,
body.theme-luxury .service-chip,
body.theme-luxury .story-grid img {
  background: rgba(255, 247, 234, 0.06);
}

body.theme-luxury .bio-link:hover {
  border-color: rgba(213, 168, 77, 0.58);
  transform: translateY(-2px);
}

body.theme-luxury .section-title,
body.theme-luxury .bio-link strong,
body.theme-luxury .contact-panel p {
  color: #fff2d2;
}

body.theme-luxury .section-eyebrow,
body.theme-luxury .profile-handle,
body.theme-luxury .handle,
body.theme-luxury .section-title span,
body.theme-luxury .link-arrow {
  color: #d5a84d;
}

body.theme-luxury .contact-panel {
  background: linear-gradient(135deg, #15100c, #6f4b16);
}

body.theme-luxury .main-cta {
  background: #f8df9b;
  color: #120d09;
}

body.theme-luxury input,
body.theme-luxury textarea,
body.theme-luxury select {
  background: rgba(255, 247, 234, 0.08);
  border-color: rgba(213, 168, 77, 0.28);
  color: #fff7ea;
}

/* Developer portfolio redesign */
body.theme-developer {
  --bg: #0b0f14;
  --surface: #111821;
  --panel: #16212d;
  --text: #f5f7fb;
  --muted: #95a3b8;
  --accent: #20d6b5;
  --accent-dark: #f3b653;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f14 0%, #101823 48%, #0f151d 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

body.theme-developer .bio-page {
  align-items: center;
  padding: 34px 20px;
}

body.theme-developer .bio-card {
  background: rgba(12, 17, 24, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(440px, 1.1fr);
  max-width: 1180px;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

body.theme-developer .bio-card::before {
  background: linear-gradient(180deg, rgba(32, 214, 181, 0.95), rgba(243, 182, 83, 0.85));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 5px;
  z-index: 3;
}

body.theme-developer .cover {
  grid-column: 1;
  grid-row: 1 / span 5;
  height: 100%;
  min-height: 720px;
}

body.theme-developer .cover::after {
  background:
    linear-gradient(180deg, rgba(11, 15, 20, 0.2), rgba(11, 15, 20, 0.96)),
    linear-gradient(90deg, rgba(11, 15, 20, 0.25), rgba(11, 15, 20, 0.74));
}

body.theme-developer .profile {
  align-content: end;
  align-items: start;
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  min-height: 430px;
  padding: 42px 40px 28px;
  position: relative;
  text-align: left;
  z-index: 2;
}

body.theme-developer .avatar {
  background: #0b0f14;
  border: 1px solid rgba(32, 214, 181, 0.55);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(32, 214, 181, 0.12);
  height: 94px;
  margin: 0 0 18px;
  width: 94px;
}

body.theme-developer .lang-switch {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin: 0 0 18px;
  order: -1;
}

body.theme-developer .lang-btn.active {
  background: var(--accent);
  color: #07110f;
  box-shadow: none;
}

body.theme-developer h1 {
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 46px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 8px;
}

body.theme-developer .handle {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0;
}

body.theme-developer .bio {
  color: #d7dee9;
  font-size: 16px;
  line-height: 1.68;
  margin: 16px 0 0;
  max-width: 390px;
}

body.theme-developer .social-row,
body.theme-developer .quick-actions {
  grid-column: 1;
  position: relative;
  z-index: 2;
}

body.theme-developer .social-row {
  justify-content: flex-start;
  padding: 0 40px 18px;
}

body.theme-developer .social-row a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(32, 214, 181, 0.32);
  color: var(--text);
}

body.theme-developer .quick-actions {
  grid-template-columns: 1fr;
  padding: 0 40px 34px;
}

body.theme-developer .quick {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(17, 24, 33, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  display: flex;
  justify-content: flex-start;
  min-height: 58px;
  padding: 12px 14px;
}

body.theme-developer .quick span {
  background: rgba(32, 214, 181, 0.12);
  color: var(--accent);
}

body.theme-developer .link-list,
body.theme-developer .mini-section,
body.theme-developer .contact-panel,
body.theme-developer .bio-footer {
  grid-column: 2;
}

body.theme-developer .link-list {
  align-content: end;
  gap: 14px;
  padding: 44px 44px 24px;
}

body.theme-developer .bio-link {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  box-shadow: none;
  min-height: 82px;
  padding: 16px;
}

body.theme-developer .bio-link:hover {
  border-color: rgba(32, 214, 181, 0.55);
  box-shadow: 0 18px 48px rgba(32, 214, 181, 0.08);
}

body.theme-developer .link-icon {
  background: linear-gradient(135deg, rgba(32, 214, 181, 0.95), rgba(243, 182, 83, 0.95));
  color: #07110f;
}

body.theme-developer .link-copy strong {
  color: var(--text);
  font-size: 16px;
}

body.theme-developer .link-copy small {
  color: var(--muted);
}

body.theme-developer .link-arrow,
body.theme-developer .section-title span {
  color: var(--accent);
}

body.theme-developer .mini-section {
  padding: 22px 44px;
}

body.theme-developer .section-title {
  text-align: left;
}

body.theme-developer h2,
body.theme-developer .contact-panel p {
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

body.theme-developer .service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
}

body.theme-developer .service-chip {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  color: #dbe5f4;
  font-size: 13px;
  padding: 12px 14px;
}

body.theme-developer .service-chip::before {
  color: var(--accent);
  content: "// ";
  font-weight: 900;
}

body.theme-developer .story-grid {
  grid-auto-columns: calc((100% - 20px) / 3);
  gap: 10px;
}

body.theme-developer .story-grid img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
}

body.theme-developer .contact-panel {
  background: linear-gradient(135deg, rgba(32, 214, 181, 0.13), rgba(243, 182, 83, 0.12));
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--text);
  margin-top: 14px;
  padding: 28px 44px 34px;
  text-align: left;
}

body.theme-developer .main-cta {
  background: var(--accent);
  border-radius: 12px;
  color: #07110f;
  justify-self: start;
}

body.theme-developer .contact-lines {
  color: var(--muted);
}

body.theme-developer .bio-footer {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

body.theme-developer .chat-toggle,
body.theme-developer .chat-lead-form button,
body.theme-developer .chat-form button,
body.theme-developer .chat-end {
  background: var(--accent);
  color: #07110f;
}

body.theme-developer .chat-panel {
  background: #111821;
  border: 1px solid rgba(32, 214, 181, 0.32);
  color: var(--text);
}

@media (max-width: 880px) {
  body.theme-developer .bio-page {
    padding: 0;
  }

  body.theme-developer .bio-card {
    border-radius: 0;
    display: block;
    max-width: none;
    min-height: 100vh;
  }

  body.theme-developer .cover {
    height: 250px;
    min-height: 250px;
  }

  body.theme-developer .profile {
    margin-top: -250px;
    min-height: 250px;
    padding: 28px 22px 22px;
  }

  body.theme-developer h1 {
    font-size: 36px;
  }

  body.theme-developer .social-row,
  body.theme-developer .quick-actions,
  body.theme-developer .link-list,
  body.theme-developer .mini-section,
  body.theme-developer .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.theme-developer .quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.theme-developer .quick {
    display: grid;
    justify-items: center;
    min-height: 86px;
  }

  body.theme-developer .service-list {
    grid-template-columns: 1fr;
  }

  body.theme-developer .story-grid {
    grid-auto-columns: calc((100% - 10px) / 2);
  }
}
/* Developer layout correction */
@media (min-width: 881px) {
  body.theme-developer .bio-card {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
    max-width: 1180px;
    min-height: 720px;
    position: relative;
  }

  body.theme-developer .cover {
    bottom: 0;
    grid-column: auto;
    grid-row: auto;
    height: auto;
    left: 0;
    min-height: 0;
    position: absolute;
    top: 0;
    width: 44%;
    z-index: 0;
  }

  body.theme-developer .profile,
  body.theme-developer .social-row,
  body.theme-developer .quick-actions {
    grid-column: 1;
    position: relative;
    z-index: 2;
  }

  body.theme-developer .profile {
    align-content: start;
    min-height: 0;
    padding: 58px 40px 24px;
  }

  body.theme-developer .social-row {
    align-self: end;
    padding-top: 170px;
  }

  body.theme-developer .quick-actions {
    padding-bottom: 42px;
  }

  body.theme-developer .link-list {
    grid-column: 2;
    grid-row: 1 / span 3;
    padding-top: 58px;
  }

  body.theme-developer .mini-section,
  body.theme-developer .contact-panel,
  body.theme-developer .bio-footer {
    grid-column: 2;
  }
}
@media (min-width: 881px) {
  body.theme-developer .link-list {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    padding-top: 58px !important;
  }

  body.theme-developer .mini-section[data-section="services"] {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  body.theme-developer .mini-section[data-section="gallery"] {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }

  body.theme-developer .contact-panel {
    grid-column: 2 !important;
    grid-row: 4 !important;
  }

  body.theme-developer .bio-footer {
    grid-column: 1 / -1 !important;
    grid-row: 5 !important;
  }
}
/* Clean portfolio v2 */
body.portfolio-site {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --panel: #eef2f7;
  --text: #111827;
  --muted: #637083;
  --accent: #2563eb;
  --accent-dark: #0f172a;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  background: #f7f8fb;
  color: var(--text);
}

body.portfolio-site::before {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.portfolio-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  left: 50%;
  max-width: 1120px;
  padding: 14px 16px 14px 20px;
  position: sticky;
  top: 16px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 10;
}

.nav-brand {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 18px;
  font-weight: 850;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent-dark) 22%, transparent);
  border-radius: 8px;
  flex: 0 0 auto;
  height: 34px;
  object-fit: contain;
  padding: 3px;
  width: 34px;
}

.portfolio-nav nav {
  display: flex;
  gap: 6px;
}

.portfolio-nav nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  padding: 9px 12px;
}

.portfolio-nav nav a:hover {
  background: var(--panel);
  color: var(--accent-dark);
}

body.portfolio-site .lang-switch {
  background: #eef2f7;
  border-radius: 999px;
  margin: 0;
}

body.portfolio-site .lang-btn.active {
  background: var(--accent);
  color: white;
  box-shadow: none;
}

.portfolio-page {
  margin: 0 auto;
  max-width: 1120px;
  padding: 48px 16px 28px;
}

.portfolio-hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 140px);
  padding: 32px 0 52px;
}

.hero-kicker {
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
  margin: 0 0 18px;
}

.portfolio-hero h1 {
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

.hero-role {
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 750;
  margin: 18px 0 0;
}

.hero-bio {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 8px;
  color: var(--exec-muted);
  font-size: 13px;
  font-weight: 800;
  padding: 12px 14px;
  text-align: center;
}

.primary-action,
.secondary-action,
.main-cta {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}

.primary-action,
.main-cta {
  background: var(--accent);
  color: white;
}

.secondary-action {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--accent-dark);
}

body.portfolio-site .social-row {
  justify-content: flex-start;
  padding: 26px 0 0;
}

body.portfolio-site .social-row a {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--accent-dark);
  font-size: 14px;
}

.hero-panel {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-wrap {
  background: #dbe3ef;
  min-height: 320px;
  position: relative;
}

.hero-image {
  height: 320px;
  object-fit: cover;
}

body.portfolio-site .avatar {
  background: white;
  border: 6px solid white;
  border-radius: 22px;
  bottom: -42px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  height: 96px;
  left: 24px;
  margin: 0;
  position: absolute;
  width: 96px;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  padding: 62px 22px 22px;
}

.metric-grid div {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 16px 12px;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--accent-dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.portfolio-section,
.process-section,
body.portfolio-site .contact-panel {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  margin: 18px 0;
  padding: 34px;
}

body.portfolio-site .section-title {
  margin-bottom: 22px;
  max-width: 760px;
  text-align: left;
}

body.portfolio-site .section-title span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body.portfolio-site h2,
body.portfolio-site .contact-panel p {
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

body.portfolio-site .service-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
}

body.portfolio-site .service-chip {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
  padding: 18px;
}

body.portfolio-site .link-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

body.portfolio-site .bio-link {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: none;
  min-height: 104px;
  padding: 18px;
}

body.portfolio-site .bio-link:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.08);
}

body.portfolio-site .link-icon {
  background: var(--accent);
  color: white;
}

body.portfolio-site .link-copy strong {
  color: var(--accent-dark);
}

body.portfolio-site .link-copy small {
  color: var(--muted);
}

body.portfolio-site .link-arrow {
  color: var(--accent);
}

body.portfolio-site .story-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
}

body.portfolio-site .story-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid div {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.process-grid span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-grid strong {
  color: var(--accent-dark);
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

body.portfolio-site .contact-panel {
  color: var(--accent-dark);
  display: grid;
  gap: 16px;
  text-align: left;
}

body.portfolio-site .main-cta {
  justify-self: start;
}

body.portfolio-site .contact-lines {
  color: var(--muted);
}

body.portfolio-site .bio-footer {
  background: transparent;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 16px 40px;
}

body.portfolio-site .chat-toggle,
body.portfolio-site .chat-lead-form button,
body.portfolio-site .chat-form button,
body.portfolio-site .chat-end {
  background: var(--accent);
  color: white;
}

body.portfolio-site .chat-panel {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--accent-dark);
}

body.portfolio-site .cookie-banner {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .portfolio-nav {
    grid-template-columns: 1fr auto;
  }

  .portfolio-nav nav {
    display: none;
  }

  .portfolio-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 18px;
  }

  .portfolio-hero h1 {
    font-size: 46px;
  }

  body.portfolio-site .service-list,
  body.portfolio-site .link-list,
  body.portfolio-site .story-grid,
  .process-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section,
  .process-section,
  body.portfolio-site .contact-panel {
    border-radius: 18px;
    padding: 24px;
  }

  body.portfolio-site h2,
  body.portfolio-site .contact-panel p {
    font-size: 27px;
  }
}
/* Executive minimal selected design */
body.executive-site {
  --bg: #f3f1ec;
  --surface: #ffffff;
  --panel: #f7f4ee;
  --text: #171717;
  --muted: #667085;
  --accent: #b9812f;
  --accent-dark: #171717;
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.10);
  background: linear-gradient(180deg, #f6f4ef 0%, #ece9e1 100%);
  color: var(--text);
}

body.executive-site::before {
  display: none;
}

.executive-nav {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 0;
  box-shadow: none;
  left: auto;
  margin: 28px auto 0;
  max-width: 1120px;
  position: relative;
  top: auto;
  transform: none;
  width: calc(100% - 32px);
}

.executive-nav .nav-brand {
  align-items: center;
  color: #171717;
  display: inline-flex;
  font-size: 15px;
  gap: 10px;
  line-height: 1;
}

.executive-nav .nav-brand::before {
  content: none;
}

.executive-nav .brand-logo {
  align-items: center;
  border: 1px solid rgba(23, 23, 23, 0.18);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 76px;
}

.executive-nav nav a {
  color: #3f4652;
  font-size: 13px;
  padding: 8px 10px;
}

.executive-nav nav a:hover {
  background: #f3f1ec;
  color: #171717;
}

body.executive-site .lang-switch {
  background: #f0ece4;
}

body.executive-site .lang-btn.active {
  background: #171717;
  color: white;
}

.executive-page {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
  margin: 0 auto 34px;
  max-width: 1120px;
  padding: 0 42px 42px;
  width: calc(100% - 32px);
}

.executive-hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: 560px;
  padding: 54px 0 34px;
}

.executive-hero .hero-kicker {
  align-items: center;
  color: #8b5e1e;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  margin-bottom: 18px;
}

.executive-hero .hero-kicker::before {
  background: #b9812f;
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.executive-hero h1 {
  color: #111111;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.executive-hero .hero-role {
  color: #242424;
  font-size: 21px;
  font-weight: 800;
  margin: 18px 0 0;
}

.executive-hero .hero-bio {
  color: #667085;
  font-size: 17px;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 560px;
}

body.executive-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.executive-site .primary-action,
body.executive-site .main-cta {
  background: #171717;
  border-radius: 4px;
  color: white;
}

body.executive-site .secondary-action {
  background: white;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 4px;
  color: #171717;
}

body.executive-site .social-row {
  justify-content: flex-start;
  padding: 24px 0 0;
}

body.executive-site .social-row a {
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.12);
  color: #171717;
  font-size: 13px;
  height: 40px;
  width: 40px;
}

.hero-visual {
  border-radius: 20px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.executive-section,
.process-section.executive-section,
body.executive-site .executive-contact {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 20px;
  max-width: 760px;
}

.section-heading p {
  color: #8b5e1e;
  font-size: 14px;
  font-weight: 850;
  margin: 0 0 8px;
}

.section-heading h2 {
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 31px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.split-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.section-link {
  color: #8b5e1e;
  font-size: 14px;
  font-weight: 800;
}

body.executive-site .service-list.service-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.executive-site .service-chip {
  background: #fbfaf7;
  border: 1px solid rgba(23, 23, 23, 0.10);
  border-radius: 8px;
  color: #171717;
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
}

body.executive-site .service-chip::before {
  align-items: center;
  border: 1px solid rgba(185, 129, 47, 0.35);
  border-radius: 8px;
  color: #b9812f;
  content: "□";
  display: inline-flex;
  font-size: 17px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

body.executive-site .service-chip:nth-child(2)::before { content: "◇"; }
body.executive-site .service-chip:nth-child(3)::before { content: "⚙"; }
body.executive-site .service-chip:nth-child(4)::before { content: "○"; }

body.executive-site .service-chip strong {
  color: #171717;
  display: block;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

body.executive-site .service-chip small {
  color: #667085;
  display: block;
  font-size: 13px;
  line-height: 1.48;
}

body.executive-site .link-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

body.executive-site .bio-link {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.10);
  border-radius: 8px;
  box-shadow: none;
  min-height: 108px;
  padding: 18px;
}

body.executive-site .bio-link:hover {
  border-color: rgba(185, 129, 47, 0.42);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.06);
}

body.executive-site .link-icon {
  background: #f3eee5;
  color: #8b5e1e;
}

body.executive-site .link-copy strong {
  color: #171717;
}

body.executive-site .link-copy small {
  color: #667085;
}

body.executive-site .link-arrow {
  color: #b9812f;
}

body.executive-site .story-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
}

body.executive-site .story-grid img {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  object-fit: cover;
}

body.executive-site .process-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.executive-site .process-grid div {
  background: #fbfaf7;
  border: 1px solid rgba(23, 23, 23, 0.10);
  border-radius: 8px;
  padding: 20px;
}

body.executive-site .process-grid span {
  color: #b9812f;
}

.executive-contact {
  align-items: center;
  background: #f7f4ee !important;
  border: 1px solid rgba(23, 23, 23, 0.08) !important;
  border-radius: 10px !important;
  display: grid !important;
  gap: 18px;
  grid-template-columns: 1fr auto;
  margin-top: 28px !important;
  padding: 28px !important;
  text-align: left !important;
}

body.executive-site .executive-contact p {
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 25px;
  font-weight: 850;
  margin: 0;
}

.executive-contact span {
  color: #667085;
  display: block;
  margin-top: 6px;
}

body.executive-site .contact-lines {
  color: #667085;
  grid-column: 1 / -1;
}

.executive-footer {
  background: transparent !important;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 16px 40px !important;
}

body.executive-site .chat-toggle,
body.executive-site .chat-lead-form button,
body.executive-site .chat-form button,
body.executive-site .chat-end {
  background: #171717;
  color: white;
}

body.executive-site .cookie-banner {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 23, 23, 0.10);
  color: #171717;
}

body.executive-site .cookie-actions button {
  background: #171717;
  color: white;
}

@media (max-width: 900px) {
  .executive-nav {
    grid-template-columns: 1fr auto;
    margin-top: 0;
    width: 100%;
  }

  .executive-nav nav {
    display: none;
  }

  .executive-page {
    border-left: 0;
    border-right: 0;
    padding: 0 18px 28px;
    width: 100%;
  }

  .executive-hero {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .executive-hero h1 {
    font-size: 48px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 260px;
  }

  body.executive-site .service-list.service-card-grid,
  body.executive-site .link-list,
  body.executive-site .story-grid,
  body.executive-site .process-grid,
  .executive-contact {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: 27px;
  }
}

/* Neon developer portfolio theme */
body.executive-site {
  --exec-bg: #050507;
  --exec-surface: rgba(14, 14, 20, 0.82);
  --exec-panel: rgba(124, 58, 237, 0.12);
  --exec-text: #f8f7ff;
  --exec-muted: #b8b2c8;
  --exec-border: rgba(168, 85, 247, 0.22);
  --exec-accent: #8b5cf6;
  --exec-accent-dark: #a855f7;
  --exec-accent-soft: rgba(139, 92, 246, 0.14);
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.28), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(168, 85, 247, 0.22), transparent 32%),
    linear-gradient(180deg, #020204 0%, #08070d 46%, #050507 100%);
  color: var(--exec-text);
}

body.executive-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
  z-index: -1;
}

body.executive-site .executive-page {
  background: transparent;
}

body.executive-site .executive-nav {
  background: rgba(6, 6, 10, 0.76);
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

body.executive-site .nav-brand,
body.executive-site .executive-nav nav a,
body.executive-site .lang-btn {
  color: var(--exec-text);
}

body.executive-site .nav-brand::first-letter,
body.executive-site .section-link,
body.executive-site .hero-kicker,
body.executive-site .executive-nav nav a:hover {
  color: #c084fc;
}

body.executive-site .brand-logo {
  background: rgba(12, 8, 20, 0.72);
  border-color: rgba(192, 132, 252, 0.34);
  border-radius: 8px;
  height: 30px;
  padding: 3px;
  width: 76px;
}

.hero-brand-lockup {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
}

.hero-logo {
  background: rgba(12, 8, 20, 0.72);
  border: 1px solid rgba(192, 132, 252, 0.28);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 6px;
  width: 128px;
}

body.executive-site .executive-nav nav a::after,
body.executive-site .executive-hero .hero-kicker::before,
body.executive-site .social-row a:hover {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
}

body.executive-site .executive-hero,
body.executive-site .executive-section,
body.executive-site .executive-contact {
  background: linear-gradient(135deg, rgba(12, 12, 18, 0.9), rgba(18, 14, 28, 0.74));
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.05);
}

body.executive-site .executive-hero {
  position: relative;
  overflow: hidden;
}

body.executive-site .executive-hero::after {
  content: "</>";
  position: absolute;
  right: 7%;
  top: 9%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(192, 132, 252, 0.36);
  color: #c084fc;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 0 55px rgba(139, 92, 246, 0.32), inset 0 0 36px rgba(139, 92, 246, 0.12);
  opacity: 0.82;
}

body.executive-site .executive-hero h1 {
  color: #ffffff;
  text-shadow: 0 0 34px rgba(139, 92, 246, 0.16);
}

body.executive-site .hero-role {
  color: #c084fc;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.executive-site .hero-bio,
body.executive-site .section-heading p,
body.executive-site .link-list p,
body.executive-site .story-card p,
body.executive-site .service-chip small,
body.executive-site .executive-contact p {
  color: var(--exec-muted);
}

body.executive-site .primary-action,
body.executive-site .executive-contact .primary-action,
body.executive-site .chat-toggle,
body.executive-site .chat-send,
body.executive-site .chat-start-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 54%, #d946ef 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.36);
}

body.executive-site .primary-action:hover,
body.executive-site .executive-contact .primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(168, 85, 247, 0.46);
}

body.executive-site .secondary-action,
body.executive-site .social-row a,
body.executive-site .lang-btn,
body.executive-site .link-list a,
body.executive-site .service-chip,
body.executive-site .story-card {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--exec-text);
}

body.executive-site .secondary-action:hover,
body.executive-site .link-list a:hover,
body.executive-site .service-chip:hover,
body.executive-site .story-card:hover {
  border-color: rgba(192, 132, 252, 0.55);
  box-shadow: 0 20px 54px rgba(139, 92, 246, 0.18);
}

body.executive-site .hero-visual {
  background: radial-gradient(circle at 54% 38%, rgba(139, 92, 246, 0.24), rgba(255,255,255,0.03) 58%, rgba(255,255,255,0.02));
  border: 1px solid rgba(168, 85, 247, 0.24);
  box-shadow: 0 26px 78px rgba(0,0,0,0.46), 0 0 55px rgba(139, 92, 246, 0.14);
}

body.executive-site .hero-visual::after {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.24), transparent 58%);
}

body.executive-site .service-chip::before,
body.executive-site .link-list a::before {
  color: #d8b4fe;
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(192, 132, 252, 0.26);
  box-shadow: inset 0 0 18px rgba(139, 92, 246, 0.08);
}

body.executive-site .story-card img {
  filter: saturate(0.95) contrast(1.04) brightness(0.82);
}

body.executive-site .cookie-banner,
body.executive-site .chat-panel {
  background: rgba(8, 8, 13, 0.94);
  border-color: rgba(168, 85, 247, 0.24);
  color: var(--exec-text);
}

@media (max-width: 900px) {
  body.executive-site .executive-hero::after {
    width: 86px;
    height: 86px;
    right: 22px;
    top: 22px;
    font-size: 28px;
    opacity: 0.45;
  }
}


/* Neon readability and width fixes */
body.executive-site .executive-nav,
body.executive-site .executive-page,
body.executive-site .executive-footer {
  max-width: 1500px;
  width: calc(100% - 48px);
}

body.executive-site .executive-page {
  padding: 0 64px 58px;
}

body.executive-site .executive-hero {
  gap: 72px;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
  min-height: 640px;
  padding: 72px 0 52px;
}

body.executive-site .executive-section,
body.executive-site .process-section.executive-section,
body.executive-site .executive-contact {
  margin-top: 0;
  padding: 52px 0;
}

body.executive-site .section-heading h2,
body.executive-site .service-chip strong,
body.executive-site .link-copy strong,
body.executive-site .story-card strong,
body.executive-site .process-grid strong,
body.executive-site .executive-contact p {
  color: #f8f7ff;
}

body.executive-site .section-heading p {
  color: #c084fc;
}

body.executive-site .section-heading h2 {
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.06;
  max-width: 940px;
  text-shadow: 0 0 34px rgba(139, 92, 246, 0.18);
}

body.executive-site .service-chip small,
body.executive-site .link-copy small,
body.executive-site .story-card p,
body.executive-site .process-grid p,
body.executive-site .executive-contact span,
body.executive-site .contact-lines {
  color: #c9c2d8;
}

body.executive-site .service-chip,
body.executive-site .bio-link,
body.executive-site .story-card,
body.executive-site .process-grid div {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(168, 85, 247, 0.28);
}

body.executive-site .service-chip {
  min-height: 172px;
  padding: 28px;
}

body.executive-site .service-chip::before,
body.executive-site .link-icon {
  background: rgba(139, 92, 246, 0.20);
  border-color: rgba(192, 132, 252, 0.36);
  color: #e9d5ff;
}

body.executive-site .link-arrow,
body.executive-site .section-link {
  color: #c084fc;
}

body.executive-site .hero-visual {
  min-height: 440px;
}

body.executive-site .hero-visual img {
  min-height: 440px;
}

@media (max-width: 1100px) {
  body.executive-site .executive-page {
    padding: 0 28px 40px;
  }

  body.executive-site .executive-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body.executive-site .executive-nav,
  body.executive-site .executive-page,
  body.executive-site .executive-footer {
    width: calc(100% - 20px);
  }

  body.executive-site .executive-page {
    padding: 0 18px 30px;
  }

  body.executive-site .executive-hero {
    padding: 42px 0 32px;
  }
}


/* Neon spacing and CTA contrast fixes */
body.executive-site .executive-page {
  padding-left: clamp(92px, 6vw, 128px);
  padding-right: clamp(92px, 6vw, 128px);
}

body.executive-site .executive-nav {
  padding-left: 42px;
  padding-right: 42px;
}

body.executive-site .executive-hero {
  grid-template-columns: minmax(520px, 0.9fr) minmax(560px, 1.1fr);
}

body.executive-site .hero-copy,
body.executive-site .section-heading,
body.executive-site .service-list,
body.executive-site .link-list,
body.executive-site .story-grid,
body.executive-site .process-grid,
body.executive-site .executive-contact,
body.executive-site .contact-lines {
  position: relative;
  z-index: 1;
}

body.executive-site .hero-copy {
  padding-left: 12px;
}

body.executive-site .executive-contact {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(12, 12, 18, 0.88)) !important;
  border: 1px solid rgba(192, 132, 252, 0.34) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

body.executive-site .executive-contact p {
  color: #ffffff !important;
  text-shadow: 0 0 24px rgba(139, 92, 246, 0.22);
}

body.executive-site .executive-contact span,
body.executive-site .executive-contact .contact-lines {
  color: #d8d0e8 !important;
}

body.executive-site .executive-contact .primary-action {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #d946ef 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 1100px) {
  body.executive-site .executive-page {
    padding-left: 34px;
    padding-right: 34px;
  }

  body.executive-site .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  body.executive-site .executive-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.executive-site .executive-nav {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* Neon sections polish fixes */
body.executive-site .executive-section {
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  margin-left: -64px;
  margin-right: -64px;
  padding: 62px 64px;
}

body.executive-site .executive-section:first-of-type {
  border-top: 1px solid rgba(168, 85, 247, 0.24);
}

body.executive-site .section-heading {
  margin-bottom: 30px;
  max-width: 980px;
}

body.executive-site .split-heading {
  align-items: flex-end;
  gap: 28px;
}

body.executive-site .service-list.service-card-grid,
body.executive-site .process-grid {
  gap: 20px;
}

body.executive-site .service-chip,
body.executive-site .process-grid div {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(139, 92, 246, 0.055));
  border: 1px solid rgba(192, 132, 252, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

body.executive-site .service-chip {
  align-content: start;
  gap: 18px;
  min-height: 196px;
}

body.executive-site .service-chip strong {
  font-size: 18px;
}

body.executive-site .service-chip small {
  font-size: 15px;
  line-height: 1.6;
}

body.executive-site .link-list {
  gap: 20px;
}

body.executive-site .bio-link {
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.065), rgba(139,92,246,0.05));
  border: 1px solid rgba(192, 132, 252, 0.26);
  border-radius: 16px;
  min-height: 132px;
  padding: 24px;
}

body.executive-site .bio-link:hover,
body.executive-site .service-chip:hover,
body.executive-site .process-grid div:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.085), rgba(139,92,246,0.095));
  border-color: rgba(216, 180, 254, 0.48);
  transform: translateY(-2px);
}

body.executive-site .link-copy strong {
  color: #ffffff;
  font-size: 17px;
}

body.executive-site .link-copy small {
  color: #d1c8df;
  font-size: 14px;
  line-height: 1.45;
}

body.executive-site .link-icon {
  color: #100719;
  background: #f4eaff;
  box-shadow: 0 0 30px rgba(192, 132, 252, 0.18);
}

body.executive-site .process-grid div {
  min-height: 150px;
}

body.executive-site .process-grid span {
  color: #d8b4fe;
  font-size: 14px;
  font-weight: 900;
}

body.executive-site .process-grid strong {
  display: block;
  font-size: 17px;
  margin: 8px 0 8px;
}

body.executive-site .process-grid p {
  color: #d1c8df;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  body.executive-site .executive-section {
    margin-left: -28px;
    margin-right: -28px;
    padding: 48px 28px;
  }

  body.executive-site .service-list.service-card-grid,
  body.executive-site .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.executive-site .executive-section {
    margin-left: -18px;
    margin-right: -18px;
    padding: 40px 18px;
  }

  body.executive-site .service-list.service-card-grid,
  body.executive-site .process-grid,
  body.executive-site .link-list {
    grid-template-columns: 1fr;
  }

  body.executive-site .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Process section layout fix */
body.executive-site .process-section.executive-section {
  background: linear-gradient(135deg, rgba(10, 8, 16, 0.92), rgba(22, 13, 35, 0.72));
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 22px;
  margin: 34px 0 0;
  padding: 48px;
}

body.executive-site .process-section .section-heading {
  margin-bottom: 28px;
  max-width: 720px;
}

body.executive-site .process-section .section-heading h2 {
  font-size: clamp(32px, 2.6vw, 44px);
  line-height: 1.08;
  max-width: 760px;
}

body.executive-site .process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.executive-site .process-grid div {
  border-radius: 18px;
  min-height: 178px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

body.executive-site .process-grid div::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
  opacity: 0.55;
}

body.executive-site .process-grid span {
  align-items: center;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.34);
  border-radius: 999px;
  color: #f1ddff;
  display: inline-flex;
  font-size: 13px;
  height: 30px;
  justify-content: center;
  min-width: 46px;
  padding: 0 12px;
}

body.executive-site .process-grid strong {
  color: #ffffff;
  font-size: 19px;
  margin: 22px 0 10px;
}

body.executive-site .process-grid p {
  color: #d9d0e6;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  body.executive-site .process-section.executive-section {
    padding: 36px;
  }

  body.executive-site .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.executive-site .process-section.executive-section {
    border-radius: 18px;
    margin-top: 24px;
    padding: 28px 20px;
  }

  body.executive-site .process-grid {
    grid-template-columns: 1fr;
  }
}


/* Unified premium section panels */
body.executive-site .executive-page {
  display: grid;
  gap: 34px;
  padding-bottom: 72px;
}

body.executive-site .executive-hero,
body.executive-site .executive-section,
body.executive-site .process-section.executive-section,
body.executive-site .executive-contact {
  border-radius: 28px;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

body.executive-site .executive-section,
body.executive-site .process-section.executive-section {
  background: linear-gradient(135deg, rgba(10, 8, 16, 0.92), rgba(22, 13, 35, 0.74));
  border: 1px solid rgba(168, 85, 247, 0.24);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.05);
  min-height: 430px;
  padding: 66px 72px;
}

body.executive-site .executive-hero {
  border-radius: 28px;
  margin-top: 4px;
  padding-left: 72px;
  padding-right: 72px;
}

body.executive-site .section-heading {
  margin-bottom: 34px;
}

body.executive-site .section-heading h2 {
  max-width: 1080px;
}

body.executive-site .service-list.service-card-grid,
body.executive-site .process-grid,
body.executive-site .story-grid,
body.executive-site .link-list {
  gap: 24px;
}

body.executive-site .service-chip,
body.executive-site .bio-link,
body.executive-site .story-card,
body.executive-site .process-grid div {
  border-radius: 22px;
}

body.executive-site .link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.executive-site .story-grid img {
  border-radius: 20px;
}

body.executive-site .process-section.executive-section {
  margin-top: 0;
}

body.executive-site .executive-contact {
  border-radius: 28px !important;
  margin-top: 0 !important;
  padding: 42px 52px !important;
}

@media (max-width: 1100px) {
  body.executive-site .executive-page {
    gap: 26px;
  }

  body.executive-site .executive-hero,
  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section {
    padding: 44px 34px;
  }

  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body.executive-site .executive-page {
    gap: 20px;
    padding-bottom: 42px;
  }

  body.executive-site .executive-hero,
  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section,
  body.executive-site .executive-contact {
    border-radius: 20px !important;
  }

  body.executive-site .executive-hero,
  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section {
    padding: 32px 20px;
  }

  body.executive-site .executive-contact {
    padding: 28px 20px !important;
  }
}


/* Footer and role color fixes */
body.executive-site .hero-role {
  color: #f8f7ff !important;
  text-shadow: 0 0 26px rgba(139, 92, 246, 0.20);
}

body.executive-site .executive-footer,
body.executive-site footer {
  color: #d8d0e8;
}

body.executive-site .executive-footer a,
body.executive-site footer a {
  color: #d8b4fe !important;
  border: 1px solid rgba(192, 132, 252, 0.28);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  text-decoration: none;
}

body.executive-site .executive-footer a:hover,
body.executive-site footer a:hover {
  color: #ffffff !important;
  background: rgba(139, 92, 246, 0.24);
  border-color: rgba(216, 180, 254, 0.52);
}


/* Responsive hardening layer */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

body.executive-site .executive-nav,
body.executive-site .executive-page,
body.executive-site .executive-footer {
  max-width: min(1500px, calc(100vw - 40px));
  width: min(1500px, calc(100vw - 40px));
}

body.executive-site .executive-nav {
  align-items: center;
  column-gap: clamp(18px, 3vw, 42px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
}

body.executive-site .executive-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
  min-width: 0;
}

body.executive-site .executive-nav nav a,
body.executive-site .nav-brand,
body.executive-site .lang-btn,
body.executive-site .primary-action,
body.executive-site .secondary-action,
body.executive-site .main-cta,
body.executive-site .button {
  white-space: nowrap;
}

body.executive-site .executive-page {
  padding-left: clamp(24px, 5vw, 104px);
  padding-right: clamp(24px, 5vw, 104px);
}

body.executive-site .executive-hero,
body.executive-site .executive-section,
body.executive-site .process-section.executive-section,
body.executive-site .executive-contact {
  min-width: 0;
}

body.executive-site .executive-hero {
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: clamp(560px, 62vh, 720px);
  padding-left: clamp(30px, 5vw, 72px);
  padding-right: clamp(30px, 5vw, 72px);
}

body.executive-site .hero-copy,
body.executive-site .hero-visual,
body.executive-site .section-heading,
body.executive-site .service-list,
body.executive-site .link-list,
body.executive-site .story-grid,
body.executive-site .process-grid,
body.executive-site .executive-contact > * {
  min-width: 0;
}

body.executive-site .executive-hero h1 {
  font-size: clamp(48px, 6vw, 92px);
  overflow-wrap: anywhere;
}

body.executive-site .hero-role {
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.36;
  max-width: 760px;
  overflow-wrap: anywhere;
}

body.executive-site .hero-bio {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 760px;
}

body.executive-site .hero-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

body.executive-site .hero-actions a,
body.executive-site .main-cta {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
}

body.executive-site .hero-visual,
body.executive-site .hero-visual img {
  min-height: clamp(300px, 36vw, 500px);
}

body.executive-site .executive-section,
body.executive-site .process-section.executive-section {
  min-height: auto;
  padding: clamp(34px, 5vw, 66px) clamp(22px, 5vw, 72px);
}

body.executive-site .section-heading h2 {
  font-size: clamp(30px, 4.5vw, 58px);
  overflow-wrap: anywhere;
}

body.executive-site .service-list.service-card-grid,
body.executive-site .process-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

body.executive-site .link-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

body.executive-site .story-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

body.executive-site .service-chip,
body.executive-site .bio-link,
body.executive-site .story-card,
body.executive-site .process-grid div {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.executive-site .executive-contact {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

body.executive-site .contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

body.executive-site .chat-widget {
  bottom: max(18px, env(safe-area-inset-bottom));
  right: max(18px, env(safe-area-inset-right));
}

body.executive-site .chat-panel {
  max-height: min(720px, calc(100vh - 110px));
  max-width: calc(100vw - 28px);
  overflow: hidden;
}

.admin-body {
  overflow-x: hidden;
}

.admin-shell {
  max-width: min(1180px, calc(100vw - 24px));
  width: min(1180px, calc(100vw - 24px));
}

.admin-header,
.admin-panel {
  min-width: 0;
  overflow: hidden;
}

.admin-header {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.admin-header .admin-actions,
.admin-actions,
.lead-toolbar,
.gallery-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.admin-tabs .tab-btn {
  flex: 0 0 auto;
}

.admin-grid,
.wide-grid,
.stats-grid,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.field,
.field input,
.field textarea,
.field select,
.lead-toolbar input,
.lead-toolbar select,
.bulk-message-box textarea {
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.lead-list,
.stats-list,
.chat-viewer,
.bulk-output {
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 900px) {
  .lead-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-card-head,
  .lead-controls {
    grid-template-columns: 1fr;
  }

  .lead-status-badge {
    justify-self: start;
  }

  .lead-contact-grid {
    grid-template-columns: 1fr;
  }

  .lead-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .lead-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  body.executive-site .executive-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.executive-site .hero-visual {
    order: -1;
  }

  body.executive-site .executive-hero::after {
    opacity: 0.36;
  }
}

@media (max-width: 900px) {
  body.executive-site .executive-nav {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }

  body.executive-site .executive-nav nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  body.executive-site .executive-nav nav a {
    flex: 0 0 auto;
  }

  body.executive-site .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  body.executive-site .executive-contact {
    grid-template-columns: 1fr;
  }

  body.executive-site .executive-contact .main-cta,
  body.executive-site .executive-contact .primary-action {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 640px) {
  body.executive-site .executive-nav,
  body.executive-site .executive-page,
  body.executive-site .executive-footer {
    max-width: calc(100vw - 16px);
    width: calc(100vw - 16px);
  }

  body.executive-site .executive-nav {
    padding: 14px 14px;
  }

  body.executive-site .executive-page {
    gap: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }

  body.executive-site .executive-hero,
  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section,
  body.executive-site .executive-contact {
    border-radius: 18px !important;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  body.executive-site .executive-hero,
  body.executive-site .executive-section,
  body.executive-site .process-section.executive-section {
    padding: 28px 16px;
  }

  body.executive-site .hero-actions a {
    flex: 1 1 100%;
    width: 100%;
  }

  body.executive-site .social-row {
    flex-wrap: wrap;
  }

  body.executive-site .hero-visual,
  body.executive-site .hero-visual img {
    min-height: 240px;
  }

  body.executive-site .section-heading {
    margin-bottom: 22px;
  }

  body.executive-site .service-chip,
  body.executive-site .bio-link,
  body.executive-site .process-grid div {
    padding: 20px;
  }

  body.executive-site .executive-footer {
    align-items: stretch;
    flex-direction: column;
  }

  body.executive-site .executive-footer a {
    width: 100%;
  }

  body.executive-site .chat-widget {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  body.executive-site .chat-toggle {
    width: 100%;
  }

  body.executive-site .chat-panel {
    bottom: 64px;
    left: 0;
    max-height: calc(100vh - 92px);
    right: 0;
    width: 100%;
  }

  .admin-shell {
    max-width: calc(100vw - 12px);
    width: calc(100vw - 12px);
  }

  .admin-header,
  .admin-panel {
    padding: 18px;
  }

  .admin-header .admin-actions,
  .admin-actions,
  .lead-toolbar,
  .gallery-admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-header .button,
  .admin-actions .button,
  .lead-toolbar .button,
  .lead-toolbar select,
  .lead-toolbar input {
    width: 100%;
  }

  .chat-phone-row,
  .gallery-admin-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  body.executive-site .executive-nav,
  body.executive-site .executive-page,
  body.executive-site .executive-footer {
    max-width: 1580px;
    width: min(1580px, calc(100vw - 64px));
  }
}


/* Responsive test fixes */
body.executive-site .lang-switch,
body.executive-site .admin-lang-switch {
  justify-self: end;
  max-width: max-content;
  width: max-content;
}

body.executive-site .executive-nav nav {
  align-items: center;
}

body.executive-site .hero-role {
  letter-spacing: 0.06em;
}

body.executive-site .cookie-banner {
  bottom: 18px;
  left: 50%;
  max-width: min(760px, calc(100vw - 36px));
  padding: 18px 20px;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  z-index: 80;
}

body.executive-site .cookie-banner p {
  margin: 0;
  max-width: 460px;
}

body.executive-site .cookie-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  body.executive-site .hero-visual {
    order: 0;
  }
}

@media (max-width: 900px) {
  body.executive-site .executive-nav {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  body.executive-site .executive-nav nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  body.executive-site .lang-switch {
    grid-column: 2;
    grid-row: 1;
  }

  body.executive-site .hero-visual {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  body.executive-site .executive-nav {
    row-gap: 12px;
  }

  body.executive-site .executive-nav nav {
    gap: 8px;
  }

  body.executive-site .executive-nav nav a {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;
    padding: 9px 12px;
  }

  body.executive-site .lang-switch {
    min-width: 92px;
  }

  body.executive-site .lang-btn {
    min-width: 42px;
    padding: 8px 11px;
  }

  body.executive-site .hero-role {
    letter-spacing: 0.025em;
  }

  body.executive-site .hero-logo {
    height: 52px;
    width: 118px;
  }

  body.executive-site .cookie-banner {
    bottom: 10px;
    left: 10px;
    max-width: none;
    padding: 14px;
    right: 10px;
    transform: none;
    width: auto;
  }

  body.executive-site .cookie-banner p {
    font-size: 13px;
    line-height: 1.45;
    max-width: none;
  }

  body.executive-site .cookie-actions {
    justify-content: space-between;
  }

  body.executive-site .cookie-actions a,
  body.executive-site .cookie-actions button {
    flex: 1 1 0;
    min-height: 42px;
  }
}


/* Mobile overflow final fixes */
body.executive-site .hero-role,
body.executive-site .executive-hero h1,
body.executive-site .section-heading h2 {
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: break-word;
}

body.executive-site .executive-nav {
  overflow: hidden;
}

@media (max-width: 640px) {
  body.executive-site .executive-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
  }

  body.executive-site .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  body.executive-site .lang-switch {
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
    min-width: 84px;
    max-width: 96px;
    overflow: hidden;
  }

  body.executive-site .lang-btn {
    font-size: 12px;
    min-width: 38px;
    padding: 8px 9px;
  }

  body.executive-site .executive-nav nav {
    flex: 1 1 100%;
    grid-column: auto;
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  body.executive-site .executive-hero h1 {
    font-size: clamp(42px, 15vw, 58px);
    line-height: 0.98;
  }

  body.executive-site .hero-role {
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.34;
    max-width: 100%;
  }

  body.executive-site .cookie-banner {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    max-height: 154px;
  }

  body.executive-site .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  body.executive-site .cookie-actions a,
  body.executive-site .cookie-actions button {
    min-height: 38px;
    padding: 8px 10px;
  }
}


/* Mobile nav and text clamp fix */
@media (max-width: 640px) {
  body.executive-site .executive-nav {
    justify-content: flex-start;
  }

  body.executive-site .nav-brand {
    flex: 1 1 100%;
    width: 100%;
  }

  body.executive-site .lang-switch {
    flex: 0 0 auto;
    order: 2;
    width: 94px !important;
    max-width: 94px !important;
    justify-self: start;
  }

  body.executive-site .executive-nav nav {
    order: 3;
  }

  body.executive-site .hero-role {
    display: block;
    max-width: 292px;
    overflow: visible;
    white-space: normal !important;
  }

  body.executive-site .hero-bio {
    max-width: 300px;
  }

  body.executive-site .cookie-banner {
    overflow: hidden;
  }

  body.executive-site .cookie-banner p {
    overflow-wrap: anywhere;
  }

  body.executive-site .cookie-actions a,
  body.executive-site .cookie-actions button {
    font-size: 13px;
    min-width: 0;
    white-space: normal;
  }
}


/* Cookie and embedded cover fixes */
body.executive-site .hero-visual img {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(5, 5, 7, 0.78));
  object-fit: cover;
  width: 100%;
}

@media (max-width: 640px) {
  body.executive-site .cookie-banner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: auto !important;
  }

  body.executive-site .cookie-banner p {
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: break-word;
  }
}


/* Final cookie and admin mobile fixes */
@media (max-width: 640px) {
  body.executive-site .cookie-banner {
    max-height: none !important;
    padding: 12px !important;
  }

  body.executive-site .cookie-banner p {
    color: #ffffff !important;
    display: block !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .admin-body {
    padding: 0;
  }

  .admin-shell {
    margin: 0 auto;
    max-width: 100vw !important;
    padding: 12px !important;
    width: 100vw !important;
  }

  .admin-header,
  .admin-panel {
    border-radius: 10px;
    max-width: 100% !important;
    overflow: hidden;
    padding: 18px !important;
    width: 100% !important;
  }

  .admin-header {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .admin-header .admin-actions,
  .admin-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .admin-header .admin-lang-switch {
    justify-self: start;
    width: max-content !important;
  }

  .admin-header .button,
  .admin-actions .button,
  .login-form .button {
    border-radius: 16px !important;
    min-height: 48px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .login-form,
  .field,
  .field input,
  .field textarea,
  .field select {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .admin-copy,
  .admin-header h1,
  .admin-panel h2 {
    overflow-wrap: anywhere;
  }
}


/* Cookie position polish */
body.executive-site .cookie-banner {
  left: 24px !important;
  right: auto !important;
  transform: none !important;
  width: min(520px, calc(100vw - 48px)) !important;
}

@media (max-width: 640px) {
  body.executive-site .cookie-banner {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }
}


/* Hero visual replacement fix */
body.executive-site .hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: clamp(360px, 35vw, 520px);
  overflow: hidden;
}

body.executive-site .hero-visual img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 1180px) {
  body.executive-site .hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  body.executive-site .hero-visual {
    min-height: 250px;
  }
}


/* Frontend copy protection */
body.executive-site :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, em, a, li, button, label, figcaption) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body.executive-site :where(img, svg) {
  -webkit-user-drag: none;
  user-drag: none;
}

body.executive-site :where(input, textarea, select, [contenteditable='true']) {
  -webkit-user-select: text;
  user-select: text;
}
