:root {
  --ink: #1e1e1e;
  --lightink: #f5eee7;
  --darkblue:#192236;
  --terracotta:#8a422d;
  --orange:#d4845e;
  --bgwarm:#e6ded5;
  --bglight:#f3efe9;
  --line: #d7cdc1;

  --radius: 8px;
  --shadow: 0 22px 55px rgba(17, 27, 32, 0.1);
  --max-width: 1180px;

  --titles: 'Cormorant Garamond', serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    var(--bgwarm);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--titles);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

p {
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 {
  font-size: 4rem;
  font-weight:200;
  line-height: 0.98;
}

h2 {
  font-size: 2.5rem;
  font-weight:400;
  line-height: 1.1;
}

h3 {
  font-size: 1.22rem;
  font-weight:600;
  line-height: 1.22;
}

.site-header,
.hero-content,
.section {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  margin-bottom: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem;
  background: var(--bgwarm);
  backdrop-filter: blur(14px);
}

.brand {
  width: 244px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header,
.brand,
.nav-row {
  min-width: 0;
}

.site-nav {
  width: min(calc(100% - 2rem), var(--max-width));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 1rem;
  min-width: 0;
  color: var(--ink); opacity:0.7;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.site-nav a {
  min-width: 0;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.1rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="true"] {
  color: var(--terracotta);
  font-weight:800;
}

.hero {
  font-family: var(--body);
  min-height: calc(100vh - 120px);
  min-height: calc(100svh - 120px);
  padding:  2rem;
  padding-top: 90px;
  display: flex;
  align-items: flex-start;
  background:
    var(--darkblue)
}
.hero-intro {
  font-family: var(--titles);
  font-size: clamp(1.7rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--orange);
    text-shadow: 0 0 8px rgba(211, 120, 70, 0.25);
  margin-bottom: 46px;
  max-width: 720px;
}

.hero-description {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--lightink);
  margin-bottom: 56px;
}

.hero h1 {
  font-family: var(--titles);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--lightink);
  margin-bottom: 42px;
}

.accent-line {
  width: 64px;
  height: 2px;
  background: var(--terracotta);
  margin-top: 12px;
  margin-bottom: 24px;
}

.hero-question {
  font-family: var(--titles);
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1.1;
  color: var(--orange);
  margin-bottom: 46px;
  max-width: 720px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 34px;
  border: 1px solid var(--terracotta);
  color: var(--lightink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.cta-btn:hover {
  background: var(--terracotta);
  color: var(--lightink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 7px;
  font-weight: 680;
  text-decoration: none;
}

.button-primary {
  color: var(--lightink);
  background: var(--terracotta);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #873c28;
}

.section, .about-band {
  padding-top: 5.2rem;
}

.section-grid,
.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.2fr) minmax(0, 1fr) ;
}

.section-intro {
  min-width: 0;
}

.section-intro.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--terracotta);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.step-list,
.section-list,
.useful-list,
.outcome-list {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  margin-top:1rem;
}



.step-list article,
.section-list article {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  background: var(--bglight);
  box-shadow: 0 14px 34px rgba(17, 27, 32, 0.055);
}

.section-list p,
.useful-list p {
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.55;
}

.useful-list p {
  font-size:0.95rem;
}

.step-list span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--terracotta);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-list p,
.step-list p,
.useful-list p {
  margin-top: 0.48rem;
}

.outcome-section, .useful-section {
  padding-top: 5.2rem;
}

.useful-section {
  padding-bottom: 5.2rem;
}

.outcome-section .accent-line,
.useful-section .accent-line {
  width: 40px;
  height: 4px;
  background: var(--terracotta);
  margin-top: 12px;
  margin-bottom: 24px;

}

.resonance-section h2 {
  margin-top:4rem;
}
.how-section h2 {
  margin-top:10rem;
}
.outcome-section h2 {
  margin-top:1.5rem;
}
.useful-section h2 {
  margin-top:2rem;
}

.useful-list article,
.outcome-list article {
  border-radius: var(--radius);
  background:
    var(--bgwarm);
}
.useful-list article {
  margin-top: 1rem;
}

.testimonials-section {
  display:flex;
  flex-direction: column;
  gap:2rem;
}

.carousel-container {
  position:relative;
  width:100%;
  display:flex;
  align-items:center;
  gap:1rem;
}

.carousel-wrapper{
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: auto;
  position: relative;
}

.testimonial-grid {
  display:flex;
  gap:30px;
  will-change: transform;
  transition: transform 0.32s ease;
  backface-visibility: hidden;
}
.testimonial-grid::-webkit-scrollbar{
  display:none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
  margin: 0;
  padding: 2.5rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--lightink);
  background:
    var(--darkblue);
  box-shadow: 0 20px 42px rgba(17, 27, 32, 0.12);
  justify-items:stretch;

}

.testimonial-card p {
  color: var(--lightink);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align:justify;
}

.testimonial-card figcaption {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-card figcaption strong,
.testimonial-card figcaption span {
  display: block;
}

.testimonial-card figcaption strong {
  color: var(--bglight);
  font-size: 1.1rem;
}

.testimonial-card figcaption span {
  margin-top: 0.25rem;
  color: var(--lightink); opacity:0.7;
  font-size: 1rem;
}

.carousel-btn{
  width:30px;
  height:30px;

  border:none;
  border-radius:50%;

  cursor:pointer;

  background:var(--bgwarm);
  color:var(--darkblue);

  font-size:1.5rem;

  flex-shrink:0;

  transition:.2s ease;
}

.carousel-btn:hover{
  transform:scale(1.05);
}

.about-band {
  color: var(--bglight);
  background:
    var(--terracotta);
}

.about-inner {
  display: grid;
  grid-template-columns: 40% minmax(0,1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.about-portrait {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.about-portrait img {
  width: 160px;
  max-width: 100%;
  object-fit: cover;
  clip-path: circle(45% at center);
}

.about-band .eyebrow {
  color: var(--lightink); opacity:0.74;
}

.about-copy p {
  color: var(--lightink);
  font-size: 1.1rem;
  line-height:2em;
}

.about-copy .accent-line {
  width: 64px;
  height: 2px;
  background: var(--bglight);
  margin-top: 30px;
  margin-bottom: 30px;

}

.about-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.about-credentials {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.85rem;
  min-width: 0;
}

.about-credentials div {
  min-width: 0;
  padding: 0.4rem;
  border: 1px solid var(--bglight);
  border-radius: var(--radius);
  background: var(--terracotta);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-credentials strong,
.about-credentials span,
.about-credentials a {
  display: block;
}

.about-credentials strong {
  color: var(--lightink);
  font-size: 1.05rem;
  font-weight:700;
  text-align: left;
}

.about-credentials span {
  margin-top: 0.28rem;
  color: var(--lightink); opacity:0.8;
  font-size: 0.9rem;
  text-align: left;
}

.about-credentials a {
  display:flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 30px;
  padding: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
}

.about-credentials a:hover,
.about-credentials a:focus-visible {
  color: var(--lightink);
  border-color: rgba(255, 255, 255, 0.42);
  text-decoration: underline;
}

.closing-cta, .foundation {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  min-width: 0;
  align-items:flex-start;
}

.closing-cta h2 {
  max-width: 48rem;
}

.closing-cta p {
  max-width: 50rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.contact-email a {
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: none;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  text-decoration: underline;
}

.cta-btn:focus-visible,
.button:focus-visible,
.carousel-btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.foundation p {
  max-width: 50rem;
  font-size:0.8rem;
}
.foundation .description {
  font-size:0.9rem;
  margin-bottom:0.5rem;
}
.foundation .eyebrow {
  font-size: 1.08rem;
}

.site-footer {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  padding: 1.6rem 0 2rem;
  font-size: 0.84rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}


@media (max-width: 1100px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand {
    display: block;
  }

  .site-header {
    position: static;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    align-items: center;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 0;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-nav {
    margin: 0 auto;
    gap: 0.54rem;
    padding-bottom: 0.15rem;
    font-size: 0.8rem;
  }

  .nav-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 0.3rem 0.5rem;
    min-width: 0;
  }


  .site-nav a {
    justify-content: center;
    min-width: 0;
    min-height: 25px;
    padding: 0.1rem, 0.1rem;
    font-size: 0.8rem;
    text-align: center;
  }

  .about-proof,
  .source-links {
    grid-column: auto;
  }

  .about-portrait {
    max-width: 360px;
  }

  .outcome-list,
  .testimonial-grid,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 16px;
  }
  .testimonial-card {
    flex: 0 0 100%;
    padding: 1.4rem;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
  }

  .testimonial-card figcaption {
    margin-top: 1.1rem;
  }

  .testimonial-card figcaption strong {
    font-size: 1rem;
  }

  .testimonial-card figcaption span {
    font-size: 0.92rem;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {

  .site-nav {
    width: 100%;
    overflow: hidden;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .site-header {
    gap: 1rem;
    backdrop-filter: none;
    background: var(--bgwarm);
  }

  .brand {
    max-width: 100%;
    text-align: center;
  }
  .brand img {
  max-width: 100%;
  height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero {
    padding: 56px 24px;
  }

  .brand {
    width: min(224px, calc(100% - 2rem));
    display: block;
  }

  .section-grid,
  .method-layout,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .section-intro p,
  .section-list p,
  .useful-list p,
  .about-copy p,
  .closing-cta p {
    font-size: 1rem;
  }

  .section {
    padding-top: 3rem;
  }

  .resonance-section h2 {
    margin-top:1.5rem;
  }
  .how-section h2 {
    margin-top:1.5rem;
  }
  .outcome-section h2 {
    margin-top:1.5rem;
  }
  .useful-section h2 {
    margin-top:1.5rem;
  }

  .useful-section {
    padding-bottom: 2rem;
  }

  .hero-intro,
  .hero-description {
    margin-bottom: 2rem;
  }

  .hero h1 {
    margin-bottom: 1.5rem;
  }

  .hero-question {
    margin-bottom: 2rem;
  }


  .closing-cta {
    padding: 1.2rem;
  }

  .testimonials{
    padding:1rem 0.5rem;
  }

  .carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-right: 1rem;
    scroll-padding-left: 1rem;
  }
  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .carousel-container {
    padding-inline: 0.5rem;
  }

  .testimonial-grid {
    gap: 16px;
    transform: none;
  }

  .testimonial-card {
    flex: 0 0 95%;
    padding: 1.3rem;
    scroll-snap-align: start;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: left;
  }

  .testimonial-card figcaption strong {
    font-size: 0.98rem;
  }

  .testimonial-card figcaption span {
    font-size: 0.88rem;
  }
  .carousel-btn {
    display: none;
  }

  .about-proof {
    gap: 1rem;
  }

  .about-credentials {
    display:flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
  }

  .about-credentials div {
    padding: 0.3rem 0.3rem;
  }
  .about-credentials a {
    font-size: 0.95rem;
  }
  .about-credentials span {
    margin-top: 0;
  }

  .cta-btn {
    width: 100%;
    padding: 18px 20px;
  }

  .brand {
    margin-bottom: 0.25rem;
  }

  .site-nav {
    margin-top: 0;
    text-align: center;
  }
}

@media (max-width: 520px) {

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .button {
    width: 100%;
  }

  .nav-row {
    gap: 0.24rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
.grouped-steps {
  display: grid;
  gap: 1rem;
}

.step-group {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  background: var(--bglight);
  box-shadow: 0 14px 34px rgba(17, 27, 32, 0.055);
}

.step-group-title {
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: -0.4rem;
}

.step-item {
  padding: 0.2rem 0;
}

.step-item + .step-item {
  border-top: 1px solid var(--line);
}

.step-item span {
  display: block;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.step-item h3 {
  margin: 0;
}

.step-item p {
  margin-top: 0.5rem;
}
