:root {
  --bg: #f7f3eb;
  --ink: #171717;
  --muted: #67625b;
  --soft: #fffaf2;
  --surface: rgba(255, 250, 242, 0.88);
  --surface-strong: #ffffff;
  --line: rgba(33, 29, 24, 0.13);
  --gold: #b18a3d;
  --teal: #2f6f6c;
  --charcoal: #202225;
  --shadow: 0 24px 80px rgba(32, 34, 37, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(247, 243, 235, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
}

.brand,
.site-nav,
.hero-actions,
.signal-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(177, 138, 61, 0.38);
  border-radius: 8px;
  background: var(--charcoal);
  color: #f7efd9;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.mail-link:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.language-switch {
  position: relative;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch.is-enhanced {
  display: block;
  width: 42px;
  height: 42px;
}

.language-link {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  line-height: 1;
}

.language-link img {
  width: 22px;
  height: 15px;
  border: 1px solid rgba(32, 34, 37, 0.12);
  object-fit: cover;
}

.language-link:hover,
.language-link[aria-current="page"] {
  background: var(--surface-strong);
  box-shadow: 0 4px 12px rgba(32, 34, 37, 0.1);
}

.language-switch.is-enhanced > .language-link[aria-current="page"]::after {
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-top: 4px solid var(--teal);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  content: "";
  transition: transform 160ms ease;
}

.language-switch.is-open > .language-link[aria-current="page"]::after {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: -1px;
  z-index: 40;
  display: none;
  min-width: 42px;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 16px 34px rgba(32, 34, 37, 0.16);
}

.language-switch.is-open .language-menu {
  display: grid;
}

.profile-photo {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid var(--surface-strong);
  border-radius: 50%;
  background: #ded9cf;
  box-shadow: 0 0 0 1px rgba(177, 138, 61, 0.4), 0 8px 20px rgba(32, 34, 37, 0.14);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.08);
}

.header-cta,
.button-primary {
  background: var(--charcoal);
  color: #fff8e9;
  box-shadow: 0 14px 34px rgba(32, 34, 37, 0.17);
}

.button-primary:hover {
  background: #111315;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--charcoal);
}

.fiverr-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.fiverr-link::before {
  content: "fi";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #1dbf73;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.fiverr-link:hover {
  color: #138a53;
}

.proof-fiverr {
  margin-top: 26px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 110px;
}

.portfolio-hero {
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 88px;
  background:
    linear-gradient(135deg, rgba(247, 243, 235, 0.96), rgba(233, 238, 233, 0.78)),
    url("assets/consulting-hero.png") center / cover;
}

.portfolio-hero h1 {
  max-width: 920px;
}

.portfolio-hero .hero-lead {
  max-width: 760px;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.98) 0%, rgba(247, 243, 235, 0.9) 37%, rgba(247, 243, 235, 0.36) 76%, rgba(247, 243, 235, 0.72) 100%),
    linear-gradient(0deg, rgba(247, 243, 235, 1) 0%, rgba(247, 243, 235, 0) 20%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-profile {
  position: absolute;
  top: clamp(58px, 8vh, 88px);
  right: max(13vw, calc((100vw - 1180px) / 2 + 120px));
  z-index: 1;
  display: none;
  width: clamp(180px, 14vw, 224px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #ece8e2;
  box-shadow:
    0 0 0 1px rgba(177, 138, 61, 0.58),
    0 24px 54px rgba(32, 34, 37, 0.22);
}

.hero-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

@media (min-width: 1180px) {
  .hero-profile {
    display: block;
  }

  .header-actions .profile-photo {
    display: none;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
  line-height: 1.02;
}

h2 {
  font-size: 40px;
  line-height: 1.1;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 620px;
  margin-top: 20px;
  color: #3f3b35;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.signal-row {
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
  margin-top: 24px;
}

.signal-row span {
  border: 1px solid rgba(47, 111, 108, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.68);
  color: #2e5755;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.intro,
.method,
.proof,
.trust-workflow,
.portfolio-preview,
.evidence-section,
.contact-section,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 54px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-copy {
  min-width: 0;
}

.section-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 30px 0 0;
  border: 1px solid rgba(33, 29, 24, 0.13);
  border-radius: 8px;
  background: #e7e2d9;
  box-shadow: 0 18px 48px rgba(32, 34, 37, 0.12);
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-visual-wide {
  aspect-ratio: 2 / 1;
  margin: 0 0 30px;
}

.section-visual-dark {
  border-color: rgba(255, 248, 233, 0.16);
  background: #111315;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.intro-text {
  display: grid;
  align-content: start;
  gap: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.value-accordion {
  margin: 8px 0;
  border-top: 1px solid var(--line);
}

.value-accordion details {
  border-bottom: 1px solid var(--line);
}

.value-accordion summary {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.value-accordion summary::-webkit-details-marker {
  display: none;
}

.value-accordion summary span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.value-accordion summary::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.value-accordion details[open] summary::after {
  content: "-";
}

.value-accordion details > p {
  max-width: 620px;
  padding: 0 36px 20px 44px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.value-accordion summary:hover,
.value-accordion summary:focus-visible {
  color: var(--teal);
}

.value-accordion summary:focus-visible {
  outline: 2px solid rgba(47, 111, 108, 0.32);
  outline-offset: 4px;
}

.portfolio-preview {
  background: #fffaf2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-preview-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 330px;
  padding: 28px;
  background: var(--surface-strong);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface-strong);
  box-shadow: 0 18px 50px rgba(32, 34, 37, 0.08);
}

.portfolio-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-card p,
.portfolio-upload-note p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.card-index,
.method-steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p,
.method-steps p,
.proof-panel p,
.contact-copy p,
.legal-doc p,
.legal-doc li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-card p {
  margin-top: 16px;
}

.method {
  background: #e9eee9;
}

.method-steps {
  display: grid;
  gap: 18px;
}

.method-steps article {
  border: 1px solid rgba(47, 111, 108, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.method-steps span {
  margin-bottom: 18px;
  color: var(--teal);
}

.method-steps p {
  margin-top: 10px;
}

.proof {
  background: var(--charcoal);
  color: #fff8e9;
}

.evidence-section {
  background: var(--charcoal);
  color: #fff8e9;
}

.evidence-section .eyebrow {
  color: #d8b265;
}

.evidence-table {
  display: grid;
  overflow: hidden;
  align-self: start;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.12);
}

.evidence-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 248, 233, 0.12);
}

.evidence-table div:last-child {
  border-bottom: 0;
}

.evidence-table span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 248, 233, 0.72);
  line-height: 1.45;
}

.evidence-table [role="columnheader"] {
  color: #fff8e9;
  font-weight: 850;
}

.proof .eyebrow {
  color: #d8b265;
}

.proof .fiverr-link {
  color: #fff8e9;
}

.proof .fiverr-link:hover {
  color: #d8b265;
}

.proof-panel p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 248, 233, 0.72);
  font-size: 19px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 233, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.14);
}

.proof-aside {
  display: grid;
  min-width: 0;
  align-content: end;
  gap: 18px;
}

.proof-aside .section-visual {
  margin-top: 0;
}

.proof-stats div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  font-size: 28px;
}

.proof-stats span {
  margin-top: 10px;
  color: rgba(255, 248, 233, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  align-items: start;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 19px;
}

.mail-link,
.future-mail {
  display: block;
  margin-top: 24px;
  font-weight: 800;
}

.future-mail {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.portfolio-upload-note {
  align-content: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 34, 37, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fbfaf7;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 111, 108, 0.24);
  border-color: var(--teal);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.consent a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-marketing {
  border: 1px solid #c94f4f;
  border-left-width: 4px;
  border-radius: 6px;
  padding: 14px;
  background: #fff6f4;
  color: #6f2929;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.consent-marketing:has(input:checked) {
  border-color: var(--teal);
  background: #f1f8f6;
  color: var(--charcoal);
}

.hidden-field {
  display: none;
}

.form-note {
  min-height: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
}

.site-footer {
  padding: 36px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #fffaf2;
  color: var(--muted);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 13px;
  font-weight: 750;
}

.cookie-settings-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-settings-button:hover {
  color: var(--teal);
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #1c2423;
  color: #ffffff;
  box-shadow: 0 -12px 36px rgba(28, 36, 35, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.cookie-banner-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #161b1a;
}

.cookie-button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.legal-main {
  padding: 72px max(24px, calc((100vw - 900px) / 2));
}

.legal-doc {
  max-width: 900px;
  padding: 0;
}

.legal-doc h1 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.legal-doc h2 {
  margin-top: 34px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.legal-doc p,
.legal-doc ul {
  margin-top: 14px;
}

.legal-doc ul {
  padding-left: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
  }

  .site-nav,
  .header-actions .header-cta {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(247, 243, 235, 0.98), rgba(247, 243, 235, 0.72));
  }

  .intro,
  .method,
  .proof,
  .trust-workflow,
  .portfolio-preview,
  .evidence-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid,
  .proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-banner-inner {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 11px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
  }

  .language-switch.is-enhanced {
    width: 36px;
    height: 36px;
  }

  .language-menu {
    min-width: 36px;
    padding: 2px;
  }

  .language-link {
    width: 30px;
    height: 30px;
  }

  .profile-photo {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero,
  .portfolio-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 74px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(247, 243, 235, 0.86));
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .intro-text,
  .contact-copy p {
    font-size: 17px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .service-grid,
  .portfolio-grid,
  .proof-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-visual-wide {
    aspect-ratio: 3 / 2;
  }

  .evidence-table div {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .cookie-banner-inner {
    display: grid;
    width: calc(100% - 36px);
    gap: 16px;
    padding: 18px 0;
  }

  .cookie-banner-actions,
  .cookie-button {
    width: 100%;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
