/* =========================================================
   Studio La Sauce - style.css
   Design monochrome (noir / blanc / gris) + grain, sur la
   base de la charte graphique Instagram du studio.
   ========================================================= */

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/Fredoka-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/Quicksand-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "NF-La Lou";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/NF-LaLou-Regular.woff2") format("woff2");
}

:root {
  --bg: #0b0b0b;
  --bg-alt: #151515;
  --bg-card: #161616;
  --border: rgba(245, 245, 240, 0.12);
  --border-strong: rgba(245, 245, 240, 0.24);
  --text: #f5f5f0;
  --text-dim: #a8a8a2;
  --text-dimmer: #737370;
  --accent: #e0793d;

  --font-display: "Fredoka", sans-serif;
  --font-body: "Quicksand", sans-serif;

  --container: 1180px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Accessibilite ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--text);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--text-dim);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Grain overlay (texture de la charte) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Vignette légère pour donner de la profondeur au fond noir */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 50% -10%, #241a14 0%, var(--bg) 55%);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.lead {
  font-size: 18px;
  color: var(--text-dim);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: var(--text);
  color: #0b0b0b;
}

.btn--primary:hover {
  background: #cfcfc9;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo img {
  width: auto;
  height: 56px;
}

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

.primary-nav a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.primary-nav a:hover {
  color: var(--text);
  background: rgba(245, 245, 240, 0.06);
}

.primary-nav a.is-active {
  color: var(--bg);
  background: var(--text);
}

.primary-nav a.nav-cta {
  color: var(--text);
  border: 1px solid rgba(224, 121, 61, 0.45);
}

.primary-nav a.nav-cta:hover {
  border-color: var(--accent);
  background: transparent;
}

.primary-nav a.nav-cta.is-active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    display: none;
  }
}

/* ---------- Menu mobile plein ecran ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0s 0.4s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s var(--ease), visibility 0s;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  flex: none;
}

.mobile-menu-logo img {
  width: auto;
  height: 46px;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--text);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-menu-nav a {
  display: inline-block;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 32px);
  font-weight: 600;
  color: var(--text);
}


.mobile-menu-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 24px 0 44px;
  flex: none;
}

.mobile-menu-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (min-width: 861px) {
  .mobile-menu {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 110px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 22px;
}

.hero .lead {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  padding-top: 76px;
  padding-bottom: 20px;
  text-align: center;
}

.page-hero .eyebrow {
  display: block;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  max-width: 760px;
  margin-inline: auto;
}

.page-hero .lead {
  max-width: 600px;
  margin: 18px auto 0;
}

/* ---------- Cards grid (services teaser, etc.) ---------- */
.grid {
  display: grid;
  gap: 22px;
}

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

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

@media (max-width: 960px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: #1a1a1a;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 240, 0.06);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* ---------- Section bandeau (intro / CTA) ---------- */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}

.cta-band {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

.cta-band h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-band .lead {
  max-width: 520px;
  margin: 0 auto 34px;
}

/* ---------- Services (page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 104px;
}

.service-block:last-child {
  border-bottom: 1px solid var(--border);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text);
}

.service-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-body p {
  max-width: 640px;
}

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

.quote-note {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .quote-note {
    flex-direction: column;
  }
}

/* ---------- À propos : founders ---------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 34px;
  text-align: center;
}

.founder-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bg);
  background: var(--text);
}

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

.founder-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.founder-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 0;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose p {
  font-size: 17px;
}

/* ---------- Réalisations ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.filter-pill:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter-pill.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.release-card.is-filtered-out {
  display: none;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.release-cover {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #1d1d1d, #0e0e0e);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.release-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.release-cover svg {
  width: 34%;
  height: 34%;
  stroke: rgba(245, 245, 240, 0.5);
  position: relative;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 0.4s var(--ease), opacity 0.16s ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.06);
}

.release-cover img.is-flipping {
  opacity: 0;
  transform: scale(0.94) !important;
}

.release-flip {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 11, 11, 0.4);
  color: rgba(245, 245, 240, 0.85);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.release-flip:hover {
  background: rgba(11, 11, 11, 0.7);
  transform: scale(1.08);
}

.release-flip svg {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.release-flip:active svg {
  transform: rotate(180deg);
}

.release-info {
  padding: 20px 22px 24px;
}

/* ---------- Lightbox (apercu de pochette) ---------- */
body.lightbox-open > header,
body.lightbox-open > .mobile-menu,
body.lightbox-open > main,
body.lightbox-open > footer {
  filter: blur(14px);
  transition: filter 0.3s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(11, 11, 11, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease), visibility 0s;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: min(85vw, 620px);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-image-wrap {
  position: relative;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.13s ease;
}

.lightbox-content img.is-changing {
  opacity: 0;
}

.lightbox-scotch {
  position: absolute;
  width: 32%;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  transition: opacity 0.13s ease;
}

.lightbox-scotch[hidden] {
  display: none;
}

#lightbox-img.is-changing ~ .lightbox-scotch {
  opacity: 0;
}

.lightbox-scotch svg {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox-scotch--top-right {
  top: -6%;
  right: -6%;
}

.lightbox-scotch--top-left {
  top: -6%;
  left: -6%;
}

.lightbox-scotch--bottom-right {
  bottom: -6%;
  right: -6%;
}

.lightbox-scotch--bottom-left {
  bottom: -6%;
  left: -6%;
}

.lightbox-flip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 11, 11, 0.6);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.lightbox-flip[hidden] {
  display: none;
}

.lightbox-flip:hover {
  background: rgba(11, 11, 11, 0.85);
  transform: scale(1.08);
}

.lightbox-flip svg {
  width: 18px;
  height: 18px;
}

.lightbox-caption {
  text-align: center;
}

.lightbox-caption .release-badge {
  margin-bottom: 10px;
}

.lightbox-caption h3 {
  font-size: 19px;
  margin: 0;
  color: var(--text);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(11, 11, 11, 0.7);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--bg-card);
  border-color: var(--text);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav--prev {
  left: 16px;
}

.lightbox-nav:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.lightbox-nav--next {
  right: 16px;
}

@media (max-width: 640px) {
  .lightbox-nav {
    display: none;
  }
}

.release-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.release-badge a:hover {
  color: var(--accent);
}

.release-info h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.release-info p {
  font-size: 14px;
  margin: 0;
}

/* ---------- Etapes (comment ca marche) ---------- */
.step-card {
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bg);
  background: var(--accent);
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 4px 26px;
}

.faq-item summary {
  padding: 18px 30px 18px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  position: relative;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

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

.faq-item p {
  padding-bottom: 20px;
  margin: 0;
  font-size: 15px;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 56px;
  text-align: center;
}

@media (max-width: 640px) {
  .contact-card {
    padding: 36px 22px;
  }
}

.contact-email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}

@media (max-width: 600px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--bg-card);
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 240, 0.06);
  border: 1px solid var(--border);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon--avatar {
  position: relative;
  width: 56px;
  height: 56px;
  background: #0b0b0b;
  border-color: var(--border-strong);
  padding: 9px;
}

.social-icon--avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-card strong {
  display: block;
  font-size: 15px;
}

.social-card span {
  display: block;
  font-size: 13px;
  color: var(--text-dimmer);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-logo img {
  width: auto;
  height: 34px;
}

.footer-tagline {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.footer-social-links {
  display: inline-flex;
  gap: 22px;
}

.footer-links a {
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 12.5px;
  color: var(--text-dimmer);
  margin: 14px 0 0;
}

@media (max-width: 480px) {
  .footer-copy {
    font-size: 10.5px;
  }
}

.footer-copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover {
  color: var(--text-dim);
}

/* ---------- Scroll reveal ---------- */
.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);
}

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

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