/* Gentle Growth — shared styles */
:root {
  --color-bg: #f3f7f4;
  --color-bg-alt: #e7efe9;
  --color-surface: #ffffff;
  --color-ink: #1a2e26;
  --color-ink-soft: #3d5349;
  --color-muted: #5c7268;
  --color-primary: #2f5d4a;
  --color-primary-dark: #244a3b;
  --color-primary-light: #4a7d66;
  --color-accent: #c4a35a;
  --color-accent-soft: #f5edd8;
  --color-border: #d4e0d8;
  --color-dark: #162820;
  --color-dark-soft: #1e352a;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shadow-soft: 0 12px 40px rgba(26, 46, 38, 0.08);
  --radius: 12px;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(74, 125, 102, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(196, 163, 90, 0.1), transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, #eef4f0 40%, var(--color-bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--color-primary-dark);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.2;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  color: var(--color-ink-soft);
}

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

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(231, 239, 233, 0.7), rgba(243, 247, 244, 0.4));
}

.section--dark {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(74, 125, 102, 0.25), transparent 50%),
    linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: #f0f5f2;
}

.section--dark h2,
.section--dark h3 {
  color: #f5faf7;
}

.section--dark p {
  color: rgba(240, 245, 242, 0.82);
}

.section__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section__intro p {
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.65rem;
}

.section--dark .eyebrow {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47, 93, 74, 0.28);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

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

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--light {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn--light:hover {
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(243, 247, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 224, 216, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--color-primary);
}

.logo__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-decoration: none;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--color-primary);
  background: rgba(47, 93, 74, 0.06);
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

.nav__cta:hover {
  background: var(--color-primary-dark) !important;
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(22, 40, 32, 0.88) 0%, rgba(22, 40, 32, 0.55) 48%, rgba(22, 40, 32, 0.35) 100%),
    linear-gradient(0deg, rgba(22, 40, 32, 0.75) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero .cta-row {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* Service grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26, 46, 38, 0.12);
}

.service-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.35rem 1.4rem 1.6rem;
}

.service-card__body h3 {
  margin-bottom: 0.55rem;
}

.service-card__body p {
  font-size: 0.98rem;
}

/* Sectors */
.sectors-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.sector-item {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease);
}

.sector-item:hover {
  border-color: var(--color-primary-light);
}

.sector-item__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

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

.sector-item h3 {
  margin-bottom: 0.4rem;
}

.sector-item p {
  font-size: 0.95rem;
}

/* Process */
.process-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem 1.4rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.process-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(196, 163, 90, 0.15);
  color: var(--color-accent);
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.98rem;
}

/* Case studies */
.cases-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.case-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.case-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.case-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.case-card__meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.5rem;
}

.case-card dl {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.case-card dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}

.case-card dd {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.case-card .result {
  color: var(--color-primary);
  font-weight: 650;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.testimonial {
  padding: 1.6rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 450;
  line-height: 1.45;
  color: var(--color-ink);
  margin-bottom: 1.15rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-ink);
}

.testimonial cite span {
  display: block;
  font-weight: 500;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

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

.about-grid__copy .mission {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: var(--color-bg-alt);
  border-radius: 10px;
  border-left: 3px solid var(--color-accent);
}

.about-grid__copy .mission strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.about-grid__copy p + p {
  margin-top: 0.9rem;
}

/* Achievements */
.achievements-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.achievement {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.achievement__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--color-accent);
}

.achievement__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.achievement__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.achievement p {
  font-size: 0.9rem;
  color: rgba(240, 245, 242, 0.75);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 46, 38, 0.12);
  color: inherit;
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.blog-card__date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.45rem;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.blog-card p {
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  width: 100%;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.2rem;
  font-size: 0.98rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-details {
  display: grid;
  gap: 1.15rem;
}

.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
  color: var(--color-ink);
}

.contact-detail a,
.contact-detail span {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-detail a:hover {
  color: var(--color-primary);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--color-ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(47, 93, 74, 0.15);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(240, 245, 242, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 0.85rem;
}

.site-footer .logo:hover {
  color: var(--color-accent);
}

.footer-col p {
  color: rgba(240, 245, 242, 0.7);
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(240, 245, 242, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #f0f5f2;
}

.footer-bottom p {
  color: #f0f5f2;
}

.footer-bottom a {
  color: #f0f5f2;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* Legal / Terms */
.legal-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-bg-alt), transparent);
}

.legal-hero h1 {
  margin-bottom: 0.5rem;
}

.legal-hero p {
  font-size: 0.95rem;
}

.legal-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 4rem;
  max-width: 48rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--color-ink-soft);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content address {
  font-style: normal;
  margin: 0.5rem 0 1rem;
  color: var(--color-ink-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-inline: auto;
  padding: 1.25rem 1.35rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(26, 46, 38, 0.18);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Tablet */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

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

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid .case-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  .about-grid__media {
    aspect-ratio: 3 / 4;
  }

  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .sector-item {
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .sector-item__media {
    aspect-ratio: 1;
  }

  .cookie-banner {
    left: auto;
    right: 1.5rem;
    margin-inline: 0;
    bottom: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    /* keep 3-col flow; 4th/5th wrap naturally */
  }

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

  .sector-item {
    grid-template-columns: 1fr;
  }

  .sector-item__media {
    aspect-ratio: 4 / 3;
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .cases-grid .case-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

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

  .testimonials-grid .testimonial:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    gap: 3.5rem;
  }

  .hero__content {
    max-width: 42rem;
  }
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(243, 247, 244, 0.98);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 85vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
