@charset "UTF-8";
/* =========================================================
   AttuneSpace : a journey from deep charcoal to warm cream.
   Tokens first, then base, then components. Each section
   carries a tone (.tone-dark / .tone-light) that swaps a
   small set of semantic colour variables, so every component
   adapts without being restyled.
   ========================================================= */

:root {
  /* Raw palette */
  --charcoal:  #141210;
  --charcoal-2:#1B1714;
  --brown:     #2A201A;
  --brown-2:   #3A2C1F;
  --taupe:     #6E5B45;
  --beige:     #C9B997;
  --beige-2:   #DED2BC;
  --cream:     #EFE7D8;

  --ivory:     #F4EDE3;   /* headings on dark */
  --cream-soft:#E7DCCA;   /* body on dark */
  --ivory-mute:#B7A88F;   /* meta on dark */

  --ink:       #2A2420;   /* headings on light */
  --ink-soft:  #4A4239;   /* body on light */
  --ink-mute:  #5C5044;   /* meta on light */

  --clay:      #A85B40;   /* terracotta accent (light) */
  --clay-deep: #8F4A30;   /* terracotta for small text/links (light) */
  --copper:    #C98B6A;   /* copper accent (dark) */
  --copper-soft:#D8A488;

  /* Semantic defaults (light end) */
  --text: var(--ink-soft);
  --heading: var(--ink);
  --muted: var(--ink-mute);
  --eyebrow: var(--clay-deep);
  --accent: var(--clay);
  --link: var(--clay-deep);
  --line: rgba(42, 36, 32, 0.13);
  --line-strong: rgba(42, 36, 32, 0.22);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1120px;
  --gutter: clamp(1.4rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 800ms;
}

/* Tone tokens ------------------------------------------------ */
.tone-dark {
  --text: var(--cream-soft);
  --heading: var(--ivory);
  --muted: var(--ivory-mute);
  --eyebrow: var(--copper);
  --accent: var(--copper);
  --link: var(--copper-soft);
  --line: rgba(244, 237, 227, 0.14);
  --line-strong: rgba(244, 237, 227, 0.26);
  color: var(--text);
}
.tone-light {
  --text: var(--ink-soft);
  --heading: var(--ink);
  --muted: var(--ink-mute);
  --eyebrow: var(--clay-deep);
  --accent: var(--clay);
  --link: var(--clay-deep);
  --line: rgba(42, 36, 32, 0.13);
  --line-strong: rgba(42, 36, 32, 0.22);
  color: var(--text);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--charcoal);
  overscroll-behavior: none;     /* avoid revealing the base colour on rubber-band scroll */
}

body {
  position: relative;             /* containing block for the full-height gradient */
  isolation: isolate;             /* own stacking context, so the -z gradient sits above the body bg */
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.1em; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.measure      { max-width: 34rem; }
.measure-wide { max-width: 46rem; }

.section { padding-block: var(--section-y); position: relative; }

.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.1rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin: 0 0 1.6rem;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  line-height: 1.6;
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  z-index: 100; transition: top 160ms var(--ease);
  text-decoration: none; font-size: 0.9rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------- background journey ---------------------------- */
.bg-journey {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  /* Light-text sections (hero..For men) live on the dark 0-63% band; the flip to
     warm beige is timed for the padding gap before Sessions, then it eases to cream. */
  background: linear-gradient(
    180deg,
    #141210 0%,
    #141210 7%,
    #181510 18%,
    #20180F 30%,
    #2A2014 40%,
    #382A19 50%,
    #46341F 57%,
    #4E3B25 60%,
    #E4D8C2 62.7%,
    #EAE1CF 70%,
    #EFE7D8 80%,
    #EFE7D8 100%
  );
}

/* ---------------------------- scroll motif ---------------------------- */
.motif {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.motif-svg {
  width: min(82vh, 82vw);
  height: min(82vh, 82vw);
  overflow: visible;
}
#motifPath {
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

/* ---------------------------- buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95em 1.7em;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 240ms var(--ease), color 240ms var(--ease),
              border-color 240ms var(--ease), transform 240ms var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: 1.02rem; padding: 1.05em 2em; }

/* primary button adapts to the section tone */
.tone-dark .btn {
  background: var(--ivory); color: var(--charcoal); border-color: var(--ivory);
}
.tone-dark .btn:hover { background: var(--copper); border-color: var(--copper); color: var(--charcoal); }
.tone-light .btn {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.tone-light .btn:hover { background: var(--clay); border-color: var(--clay); color: var(--cream); }

/* ---------------------------- header / nav ---------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  --accent: var(--copper);
  color: var(--ivory);
  transition: background-color 360ms var(--ease), box-shadow 360ms var(--ease),
              border-color 360ms var(--ease), color 360ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(244, 237, 227, 0.12);
}
body.nav-light .site-head {
  --accent: var(--clay);
  color: var(--ink);
}
body.nav-light .site-head.scrolled {
  background: rgba(239, 231, 216, 0.82);
  border-bottom-color: rgba(42, 36, 32, 0.12);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 90px;
}
.brand { display: inline-flex; align-items: center; gap: 0.72rem; text-decoration: none; color: inherit; }
.brand-mark { height: 54px; width: auto; flex: none; display: block; }
.foot-brand .brand-mark { height: 76px; }

/* Show the warm-light mark on dark backgrounds, the terracotta mark on light ones. */
.brand-mark--onLight { display: none; }
body.nav-light .site-head .brand-mark--onDark { display: none; }
body.nav-light .site-head .brand-mark--onLight { display: block; }
.site-foot .brand-mark--onDark { display: none; }
.site-foot .brand-mark--onLight { display: block; }
.brand-word { font-family: var(--serif); font-size: 1.62rem; font-weight: 420; letter-spacing: -0.01em; }
.foot-brand .brand-word { font-size: 1.95rem; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav-list { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  text-decoration: none;
  color: inherit;
  opacity: 0.82;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.4rem;
  transition: opacity 200ms var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-list a:hover { opacity: 1; }
.nav-list a:hover::after { transform: scaleX(1); }

.btn-nav {
  padding: 0.7em 1.35em; min-height: 44px;
  background: var(--ivory); color: var(--charcoal); border-color: var(--ivory);
}
.btn-nav:hover { background: var(--copper); border-color: var(--copper); color: var(--charcoal); }
body.nav-light .btn-nav { background: var(--ink); color: var(--cream); border-color: var(--ink); }
body.nav-light .btn-nav:hover { background: var(--clay); border-color: var(--clay); }

/* mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  background: none; border: none; cursor: pointer;
  padding: 0; color: inherit;
}
.menu-toggle span {
  display: block; height: 1.5px; width: 26px;
  background: currentColor; margin-inline: auto;
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 90px 0 auto 0;
  background: var(--charcoal);
  color: var(--ivory);
  border-bottom: 1px solid rgba(244, 237, 227, 0.12);
  z-index: 45;
  padding: 1rem var(--gutter) 2rem;
  animation: menuIn 300ms var(--ease);
}
body.nav-light .mobile-menu { background: var(--cream); color: var(--ink); border-bottom-color: var(--line); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a {
  text-decoration: none;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.35rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(244, 237, 227, 0.12);
}
body.nav-light .mobile-menu a { border-bottom-color: var(--line); }
.mobile-menu a.btn {
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--ivory); color: var(--charcoal); border-color: var(--ivory);
  border-bottom: 1px solid var(--ivory);
  margin-top: 1rem;
  justify-content: center;
}
body.nav-light .mobile-menu a.btn { background: var(--ink); color: var(--cream); border-color: var(--ink); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------------------------- hero ---------------------------- */
.hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }

/* Scrim: hides the tangled line behind the hero text (left/centre) while letting
   it stay visible to the right. Charcoal, so it reads as the background, not a panel. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Cover the tangled line behind the text column (left/centre) so it never
     interferes with the words; fade to clear on the right so the line shows in
     the empty space and reveals more as the hero scrolls away. */
  background: linear-gradient(
    100deg,
    rgba(20, 18, 16, 0.72) 0%,
    rgba(20, 18, 16, 0.68) 46%,
    rgba(20, 18, 16, 0.46) 62%,
    rgba(20, 18, 16, 0.2) 76%,
    rgba(20, 18, 16, 0) 90%
  );
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 340;
  letter-spacing: -0.018em;
  margin-bottom: 1.6rem;
  max-width: 20ch;
}
.hero-title .ht-line { display: block; text-wrap: balance; }
.hero-title-em {
  display: block;
  margin-top: 0.2em;
  color: var(--accent);
  font-style: italic;
  font-weight: 380;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(1.18rem, 2.1vw, 1.4rem);
  line-height: 1.62;
  color: var(--text);
  margin-bottom: 2.4rem;
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero-note { font-size: 0.96rem; color: var(--muted); margin: 0; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: clamp(1.6rem, 4vw, 2.6rem);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 200ms var(--ease);
}
.scroll-cue svg { width: 20px; height: 20px; animation: nudge 2.6s var(--ease) infinite; }
.scroll-cue:hover { color: var(--heading); }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------------------------- recognition ---------------------------- */
.recognise-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.recognise-list { list-style: none; margin: 0; padding: 0; }
.recognise-list li {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.34;
  color: var(--heading);
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.recognise-list li:first-child { border-top: none; padding-top: 0; }
.recognise-reframe {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 1.4rem;
  position: sticky;
  top: 120px;
}
.recognise-reframe em { color: var(--heading); font-style: italic; }

/* ---------------------------- about ---------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-portrait { position: relative; }
.about-portrait img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.96) contrast(1.01);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.55;
}
.about-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.3rem; }
.about-text p { color: var(--text); max-width: 38rem; }
.credentials {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------------------------- the work / threads ---------------------------- */
.threads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.thread { padding: 2.1rem 2.2rem 2.1rem 0; border-bottom: 1px solid var(--line); }
.thread:nth-child(odd)  { border-right: 1px solid var(--line); padding-right: 2.6rem; }
.thread:nth-child(even) { padding-left: 2.6rem; }
.thread h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 0.6rem; color: var(--heading); }
.thread p { color: var(--text); margin: 0; font-size: 1rem; }

/* Attributed quote, used as a single line (The work) and as a rotating set (For men) */
.throughline {
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  max-width: 36rem;
  text-align: center;
  padding: 0;
  border: none;
}
.throughline p,
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.32;
  color: var(--heading);
  margin: 0 0 1.1rem;
}
.throughline cite,
.quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Rotating quotes: all stacked in one grid cell, cross-faded. */
.quotes {
  display: grid;
  max-width: 36rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
}
.quote {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  transition: opacity 1100ms var(--ease);
}
.quote.is-active { opacity: 1; }

/* ---------------------------- for south asian men ---------------------------- */
.men-body { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.men-body .lead { margin-bottom: 1.4rem; }
.men-body p { color: var(--text); }

/* ---------------------------- sessions ---------------------------- */
.detail-rows {
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
  max-width: 52rem;
}
.detail-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.detail-row dt {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eyebrow);
}
.detail-row dd { margin: 0; font-size: 1.12rem; color: var(--text); line-height: 1.55; }
.fee { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--heading); }

/* ---------------------------- faq ---------------------------- */
.faq-list { max-width: 52rem; margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; flex: none; width: 16px; height: 16px; }
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
}
.faq-mark::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
.faq-mark::after  { left: 50%; top: 0; width: 1.5px; height: 16px; transform: translateX(-50%); }
.faq-item[open] .faq-mark::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-answer { padding: 0 0 1.6rem; max-width: 46rem; animation: faqIn 360ms var(--ease); }
.faq-answer p { color: var(--text); margin: 0; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------------------------- contact ---------------------------- */
.contact-inner { position: relative; z-index: 2; text-align: center; }
.section-contact .lead { margin-inline: auto; }
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.4rem;
}
.contact-direct { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 2rem; }
.contact-link {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 220ms var(--ease), border-color 220ms var(--ease);
}
.contact-link:hover { color: var(--heading); border-color: var(--accent); }

/* ---------------------------- footer ---------------------------- */
.site-foot {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--text);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3rem;
}
.foot-brand .brand { margin-bottom: 1rem; color: var(--heading); }
.foot-tagline { color: var(--text); max-width: 22rem; margin: 0; }
.foot-name { font-size: 0.98rem; color: var(--heading); margin-bottom: 0.8rem; font-weight: 500; }
.foot-credentials { font-size: 0.85rem; color: var(--muted); line-height: 1.75; max-width: 40rem; }
.foot-contact { margin-top: 1rem; }
.foot-contact a { color: var(--link); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.foot-contact a:hover { color: var(--heading); }
.foot-sep { color: var(--muted); margin-inline: 0.5rem; }
.foot-base { border-top: 1px solid var(--line); padding-block: 1.6rem 2rem; }
.foot-base p { font-size: 0.8rem; color: var(--muted); margin: 0; letter-spacing: 0.02em; }

/* ---------------------------- accreditations ---------------------------- */
.accreditations { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.accred-inner { text-align: center; }
.accred-inner .eyebrow { margin-bottom: 1.8rem; }
.accred-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* One row — every credential sized to a common height so they sit on a single line */
.accred-row--all { gap: clamp(1.5rem, 3.5vw, 3rem); }
.accred-badge { height: 54px; width: auto; display: block; }
.accred-cred { height: 54px; width: auto; display: block; }
.accred-pt-holder { flex: none; display: inline-flex; align-items: center; line-height: 0; }
/* The PT script sizes the seal (this anchor) to 284x89 inline; scale it to the row height. */
.accred-pt {
  display: block !important;
  line-height: 0;
  width: 172px !important;
  height: 54px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.accred-pt img, .accred-pt iframe { max-height: 54px; max-width: 100%; width: auto; height: auto; display: block; border: 0; }
@media (max-width: 760px) {
  .accred-row--all { gap: 1.25rem 2rem; }
  .accred-badge, .accred-cred { height: 44px; }
  .accred-pt { width: 140px !important; height: 44px !important; }
  .accred-pt img, .accred-pt iframe { max-height: 44px; }
}

/* ---------------------------- reveal on scroll ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ============================ responsive ============================ */
@media (max-width: 900px) {
  .recognise-grid { grid-template-columns: 1fr; }
  .recognise-reframe { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { max-width: 24rem; }
  .threads { grid-template-columns: 1fr; }
  .thread { padding: 1.8rem 0; }
  .thread:nth-child(odd) { border-right: none; padding-right: 0; }
  .thread:nth-child(even) { padding-left: 0; }
  .foot-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 2.5rem; }
  .motif-svg { width: 120vw; height: 120vw; }
  /* On phones the text is full-width, so protect it from the top down instead. */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(20, 18, 16, 0.74) 0%,
      rgba(20, 18, 16, 0.68) 55%,
      rgba(20, 18, 16, 0.4) 78%,
      rgba(20, 18, 16, 0) 100%
    );
  }
  .scroll-cue { display: none; }
  .detail-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.3rem 0; }
}

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

/* ============================ reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue svg { animation: none; }
}
