:root {
  --bg: #f7f3ea;
  --bg-strong: #fffaf0;
  --ink: #16130f;
  --muted: #5d554b;
  --line: rgba(22, 19, 15, 0.14);
  --blue: #2858ff;
  --lime: #c6ff4d;
  --rose: #ff6b8a;
  --orange: #ff8b2c;
  --shadow: 0 28px 80px rgba(47, 37, 21, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 139, 44, 0.22), transparent 30rem),
    radial-gradient(circle at 85% 0%, rgba(40, 88, 255, 0.20), transparent 28rem),
    var(--bg);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.10);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  background: var(--bg-strong);
  border-radius: 16px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.nav-toggle,
.button,
.service-item a,
.service-product-row a {
  min-height: 48px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(22, 19, 15, 0.08);
}

.main-nav .nav-cta {
  color: white;
  background: var(--blue);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: white;
  background: #1747ef;
}

.nav-toggle {
  display: none;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font: inherit;
  font-weight: 800;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section,
.page-hero,
.contact-layout,
.thanks-screen {
  padding: 88px 0;
}

.section-grid {
  padding: 28px 0 88px;
}

.hero {
  padding-bottom: 46px;
}

.hero + .section {
  padding-top: 46px;
}

.section-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #33291c;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Inter, Manrope, Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4vw, 4.35rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-lead,
.page-hero p,
.contact-copy > p,
.thanks-screen p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid transparent;
  border-radius: 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(40, 88, 255, 0.28);
}

.button-secondary {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--lime);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.48)),
    radial-gradient(circle at 52% 42%, rgba(198, 255, 77, 0.72), transparent 16rem),
    radial-gradient(circle at 76% 64%, rgba(255, 107, 138, 0.58), transparent 14rem),
    var(--blue);
  box-shadow: var(--shadow);
}

.status-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 55px rgba(20, 17, 12, 0.18);
}

.orbit-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-card strong {
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.main-orbit {
  right: 34px;
  bottom: 34px;
  width: min(78%, 430px);
}

.left-orbit {
  left: 34px;
  bottom: 180px;
  width: 285px;
  transform: rotate(-7deg);
}

.right-orbit {
  top: 120px;
  right: 30px;
  width: 290px;
  transform: rotate(8deg);
}

.section-title {
  display: block;
  max-width: 820px;
  margin-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.4vw, 3.9rem);
}

.section-title p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-eyebrow {
  font-size: 16px;
  padding: 10px 16px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.card,
.project-card,
.contact-form,
.contact-note,
.timeline article,
.service-item,
.service-category,
.service-offer-card,
.service-detail-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(47, 37, 21, 0.10);
}

.card {
  min-height: 310px;
  padding: 28px;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.accent-blue { background: linear-gradient(160deg, rgba(40, 88, 255, 0.14), rgba(255,255,255,0.70)); }
.accent-lime { background: linear-gradient(160deg, rgba(198, 255, 77, 0.36), rgba(255,255,255,0.70)); }
.accent-rose { background: linear-gradient(160deg, rgba(255, 107, 138, 0.20), rgba(255,255,255,0.70)); }

.split-section,
.cta-band {
  display: grid;
  gap: 36px;
  align-items: center;
  margin: 38px 0 88px;
  padding: 42px;
  border-radius: 38px;
}

.split-section {
  grid-template-columns: 0.86fr 1.14fr;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 139, 44, 0.24), transparent 16rem),
    radial-gradient(circle at 92% 12%, rgba(40, 88, 255, 0.25), transparent 18rem),
    #17130f;
  color: white;
}

.split-section .eyebrow,
.split-section p {
  color: rgba(255,255,255,0.78);
}

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

.experience-grid article {
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.experience-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 15px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.experience-grid h3 {
  margin-bottom: 12px;
  color: white;
  font-size: 1.25rem;
}

.experience-grid p {
  margin-bottom: 0;
}

.cta-band {
  grid-template-columns: 1fr auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 24%, rgba(198, 255, 77, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 240, 0.62));
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(47, 37, 21, 0.10);
}

.cta-band .button {
  min-width: 220px;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.4vw, 4rem);
}

.cta-band p {
  max-width: 720px;
  color: var(--muted);
}

.page-hero {
  text-align: left;
}

.service-list {
  display: grid;
  gap: 16px;
  padding-bottom: 88px;
}

.service-item {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.service-item div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.service-item span,
.timeline span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.service-item h2,
.service-item p {
  margin: 0;
}

.service-item h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
}

.service-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  color: white;
  background: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.service-catalog {
  display: grid;
  gap: 18px;
  padding-bottom: 88px;
}

.service-category {
  overflow: hidden;
}

.service-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  cursor: pointer;
  list-style: none;
}

.service-category summary::-webkit-details-marker {
  display: none;
}

.service-category summary span {
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-category summary small {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.service-category summary::after {
  content: '+';
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  background: var(--blue);
  font-size: 1.6rem;
  font-weight: 700;
}

.service-category[open] summary::after {
  content: '−';
}

.service-products {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 28px 28px;
  list-style: none;
}

.service-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-product-row h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.service-product-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.service-product-row span {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.service-product-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 12px 18px;
  border-radius: 16px;
  color: white;
  background: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 28px;
  align-items: stretch;
  padding: 88px 0 46px;
}

.service-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.service-offer-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 28px;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(198, 255, 77, 0.34), transparent 12rem),
    #17130f;
}

.service-offer-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.service-offer-card strong {
  margin: 48px 0 12px;
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-offer-card p {
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 42px 0;
}

.service-detail-card {
  padding: 30px;
}

.service-detail-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.service-detail-card ul,
.service-detail-card ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.service-detail-card li::marker {
  color: var(--blue);
  font-weight: 900;
}

.service-detail-card.accent-dark {
  color: white;
  background: #17130f;
}

.service-detail-card.accent-dark .eyebrow,
.service-detail-card.accent-dark ol {
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 88px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 30px;
  background: linear-gradient(160deg, rgba(255,255,255,0.76), rgba(255,250,240,0.52));
}

.project-card.big,
.project-card.wide {
  background:
    radial-gradient(circle at 78% 20%, rgba(198, 255, 77, 0.45), transparent 16rem),
    #17130f;
  color: white;
}

.project-card.big {
  grid-row: span 2;
  min-height: 538px;
}

.project-card.wide {
  grid-column: span 2;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.project-card p {
  color: var(--muted);
}

.project-link {
  margin-top: auto;
  align-self: flex-start;
}

.project-card.big p,
.project-card.wide p {
  color: rgba(255,255,255,0.78);
}

.about-hero {
  padding-bottom: 42px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.about-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 88px;
}

.timeline article {
  display: grid;
  grid-template-rows: 48px 180px auto;
  row-gap: 28px;
  align-content: start;
  padding: 28px;
}

.timeline span {
  margin-bottom: 0;
}

.timeline h2 {
  align-self: start;
  min-height: 0;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.08;
}

.timeline p {
  margin-bottom: 0;
}

.contact-layout {
  align-items: start;
}

.contact-note {
  max-width: 520px;
  margin-top: 26px;
  padding: 22px;
}

.contact-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 2px solid rgba(22, 19, 15, 0.18);
  border-radius: 18px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.main-nav a:focus-visible,
.service-item a:focus-visible,
.nav-toggle:focus-visible {
  outline: 4px solid rgba(40, 88, 255, 0.34);
  outline-offset: 3px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-error {
  padding: 14px 16px;
  border: 2px solid rgba(164, 22, 26, 0.34);
  border-radius: 18px;
  color: #7e1418;
  background: #fff1f1;
  font-weight: 900;
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-footnote a {
  color: var(--blue);
  text-decoration: underline;
}

.thanks-screen {
  min-height: 65vh;
  text-align: center;
}

.thanks-screen .eyebrow {
  transform: translateX(-10px);
}

.thanks-screen h1,
.thanks-screen p {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: 30px;
  color: white;
  background: var(--ink);
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.72);
}

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

.footer-actions a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.delay-1 { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-strong);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
  }

  .section-grid,
  .contact-layout,
  .section-title,
  .split-section,
  .cta-band,
  .service-item,
  .service-products,
  .service-hero,
  .service-detail-grid,
  .service-product-row,
  .portfolio-grid,
  .timeline,
  .experience-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  .project-card.big,
  .project-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .service-item {
    align-items: start;
  }

  .service-category summary {
    align-items: flex-start;
  }

  .service-product-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-product-row a {
    justify-self: start;
  }

  .timeline article {
    grid-template-rows: auto;
    row-gap: 24px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .eyebrow {
    display: inline-block;
    overflow-wrap: anywhere;
  }

  .section,
  .section-grid,
  .page-hero,
  .contact-layout,
  .thanks-screen {
    padding: 56px 0;
  }

  .thanks-screen .eyebrow {
    transform: none;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-card {
    min-height: 460px;
    border-radius: 30px;
  }

  .orbit-card {
    min-height: 140px;
    padding: 18px;
  }

  .orbit-card strong {
    font-size: clamp(1.7rem, 11vw, 2.55rem);
  }

  .main-orbit {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .left-orbit {
    left: 18px;
    bottom: 162px;
    width: 238px;
  }

  .right-orbit {
    top: 96px;
    right: 18px;
    width: 230px;
  }

  .split-section,
  .cta-band,
  .card,
  .experience-grid article,
  .project-card,
  .contact-form,
  .timeline article,
  .service-item,
  .service-category summary,
  .service-offer-card,
  .service-detail-card {
    padding: 22px;
    border-radius: 26px;
  }

  .service-hero {
    padding: 56px 0 30px;
  }

  .service-products {
    padding: 0 12px 12px;
  }

  .service-category summary {
    display: grid;
  }

  .site-footer {
    display: grid;
  }

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

/* FAQ Section */
.faq {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 16px;
}

.faq h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  margin-bottom: 22px;
  text-align: center;
}

.faq details {
  font-family: inherit;
  margin-bottom: 16px;
  padding: 20px 24px;
  background: var(--bg-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.faq details:hover {
  border-color: var(--blue);
}

.faq details[open] {
  background: white;
  box-shadow: var(--shadow);
}

.faq summary {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  font-family: inherit;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 16px;
  background: var(--bg-strong);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(47, 37, 21, 0.12);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner__content a {
  color: var(--blue);
  text-decoration: underline;
}

.cookie-banner__btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
