/* =============================================
   Solva — Components (v1.1 landing)
   UI components only: buttons, cards, nav, badges,
   typography blocks, interactive affordances.
   ============================================= */

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 104px;     /* matches “confident” service-brand sizing */
  width: auto;      /* critical: prevents distortion */
  max-width: none;  /* prevents unexpected clamping */
  display: block;
  object-fit: contain;
}

.nav-link{
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;

  color: var(--muted);
  text-decoration: none;

  padding: 10px 12px;
  border-radius: 10px;

  transition: color 140ms ease, background-color 140ms ease;
}

.nav-link:hover,
.nav-link:focus-visible{
  color: var(--solva-wine);
  background: var(--hover-bg);
  text-decoration: none;
}

.nav-link:active{
  background: var(--active-bg);
}

.nav-toggle,
.nav-close {
  display: none;
}

.nav-backdrop {
  display: none;
}

.eyebrow{
  font-family: var(--font-playfair);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
}


.hero-title{
  font-family: var(--font-playfair);
  font-weight: 650;
  font-size: clamp(2rem, 2.4vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.script{
  font-family: var(--font-satisfy); /* Satisfy */
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: 0;
  color: var(--solva-rose);
  white-space: nowrap;
}

.hero-subtitle{
  color: color-mix(in srgb, var(--text) 70%, white);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
  font-family: var(--font-lato);
}



.section-head h2{
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section-head p{
  font-size: 1.02rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 12px;
  padding: 11px 14px;
 

  border: 1px solid var(--btnBorder);
  background: white;
  color: var(--btnText);

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;

  text-decoration: none;
  cursor: pointer;

  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.btn:hover{
  transform: none;
  box-shadow: none;
  background: var(--hover-bg);
  border-color: color-mix(in srgb, var(--btnBorder) 70%, black);
}


.btn:active{ transform: translateY(0); }





.btn-primary{
  background: var(--solva-wine);
  border-color: var(--solva-wine);
  color: #fff;
  font-family: var(--font-playfair);
}

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

.btn-angled{
  position: relative;
  padding: 14px 22px;

  background: color-mix(in srgb, var(--solva-pink) 22%, white);
  color: var(--solva-wine);

  border: 1px solid var(--solva-wine);
  border-radius: 8px;

  transform: skewX(-6deg);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--solva-wine) 18%, transparent);

  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.btn-angled .btn-label{
  display: inline-block;
  transform: skewX(6deg);

  font-family: var(--font-satisfy); /* Satisfy */
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
}

.btn-angled:hover{
  background: color-mix(in srgb, var(--solva-pink) 28%, white);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--solva-wine) 24%, transparent);
}

.btn-angled:active{
  transform: skewX(-6deg) translateY(0);
}


.btn-secondary{
  background: rgba(255,255,255,0.06);
  border-color: rgba(242,175,195,0.16);
  color: var(--text);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(242,175,195,0.14);
  color: rgba(246,238,241,0.85);
}

.btn-ghost:hover{ background: rgba(255,255,255,0.05); }

.btn-link{
  background: transparent;
  border: 0;
  padding: 10px 8px;
  border-radius: 10px;

  color: var(--solva-wine);
  font-weight: 600;
  letter-spacing: 0;
}

.btn-link:hover{
  background: var(--hover-bg);
  box-shadow: none;
  transform: none;
}


.btn-block{ width: 100%; }

.hero-bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;

  font-family: var(--font-lato);
  color: color-mix(in srgb, var(--text) 78%, white);
  line-height: 1.5;
}

.hero-bullets li::before{
  content: "—";
  color: var(--solva-rose);
  line-height: 1.2;
  margin-top: 1px;
}

.hero-meta{
  margin: var(--s-4) 0 0;
  font-family: var(--font-lato);
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-media img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50px;

  -webkit-mask-image:
    linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%);
  
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}


@media (max-width: 900px){
  .hero-media img{
    height: 360px;

    -webkit-mask-image: radial-gradient(
      ellipse at center,
      rgba(0,0,0,1) 80%,
      rgba(0,0,0,0.9) 90%,
      rgba(0,0,0,0) 100%
    );
  }
}
/* =============================================
   Ways We Help – Content Styling
   ============================================= */

.way-content{
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* Headings */
.way-content h3{
  margin: 0;
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Body text */
.way-content p{
  margin: 0;
  font-family: var(--font-lato);
  color: var(--color-text-muted);
  max-width: 42ch;
}

/* Media: neutral, no card treatment */
.way-media{
  position: relative;
}

.way-media img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
}


/* =========================================================
   Preview — Section Head (visual)
   ========================================================= */

.preview .section-head {
  text-align: center;
}

.preview .section-head {
  font-family: var(--font-playfair);
}

.preview .section-head p {
  margin-inline: auto;
  max-width: 56ch;
  opacity: 0.92;
}
/* =========================================================
   Preview Label — Abstract background container
   ========================================================= */
.preview-label{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background: transparent;
  line-height: 1;
  isolation: isolate;
}

.preview-label::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  /* this makes it cover the whole label (including "During the day") */
  width: calc(100% + 180px);
  height: calc(100% + 70px);

  background-image: url("../assets/images/abstract-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

.preview-icon,
.preview-label h3{
  position: relative;
  z-index: 1;
}


@supports not (mask: url("") center/contain no-repeat){
  .preview-label::before{
    -webkit-mask: none;
    mask: none;
    background: url("../assets/images/abstract-bg.png") center / 100% 100% no-repeat;
    opacity: 0.9;
  }
}



/* Content sits above */
.preview-icon,
.preview-label h3{
  position: relative;
  z-index: 1;
}

.preview-icon{
  width: 72px;
  height: 72px;
  flex: 0 0 72px;     /* MATCH width/height */
  display: block;
  object-fit: contain;

  transform: scale(1.08);
  transform-origin: center;
}

/* Heading */
.preview-label h3{
  margin: 0;
  line-height: 1.05;
  font-family: var(--font-playfair);
  color: var(--text);
}


/* Slightly tighter on mobile */
@media (max-width: 768px){
  .preview-label{
    padding: var(--s-3) var(--s-4);
    min-height: 68px;
    background-size: 160% 160%;
  }

  .preview-icon{
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    transform: scale(1.06);
  }
}


/* =========================================================
   Preview — Description height lock (desktop)
   ========================================================= */


.preview-col > p{
  font-family: var(--font-lato);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 42ch; /* match Ways */
}

/* Mobile: don't force fixed heights (let it breathe) */
@media (max-width: 768px) {
  .preview .section-head {
    text-align: left;
  }

  .preview .section-head p {
    margin-inline: 0;
    max-width: none;
  }

 .preview-col > p{
    min-height: calc(1.55em * 3); /* 3 lines */
  }

  .preview-icon {
    width: 40px;
    height: 40px;
    transform: translateY(0);
  }
}
/* =========================================================
   Preview — Screenshot softness (match hero mask fade)
   ========================================================= */

.preview-shot{
  position: relative;
  width: 100%;
}

.preview-shot img{
  display: block;
  width: 100%;
  height: auto;

  box-shadow: 0 18px 46px rgba(0,0,0,0.10);
  border-radius: 30px;
  /* HERO-LIKE soft edge fade */
  -webkit-mask-image:
    linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%);

  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
/* =========================================================
   Features — Framed Section
   ========================================================= */

.features{
  position: relative;
  background-color: white;
  background-image: url("../assets/images/features-border.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

/* Soft veil so text reads clean over illustration */
.features::before{
  content: "";
  position: absolute;
  inset: 0;

  background: #fff;
  opacity: 0.70; /* was ~0.9 territory */
  
  z-index: 0;
  pointer-events: none;
}


.features .container{
  position: relative;
  z-index: 1;
}

/* Section head tone */
.features .section-head h2{
  font-family: var(--font-playfair);
}

.features .section-head p{
  color: var(--muted);
}

.feature-list{
  padding-left: var(--s-8);
}

@media (max-width: 768px){
  .feature-list{
    padding-left: 0;
  }
}


/* =========================================================
   Features — Items + Divider
   ========================================================= */

.feature-item{
  position: relative;
}

/* centered divider line */
.feature-item:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: min(62%, 36rem);
  height: 1px;

  background: color-mix(in srgb, var(--accent) 30%, var(--bg));
  opacity: 0.65;
}

/* =========================================================
   Features — Watermark Icons
   ========================================================= */

.feature-icon{
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   Features — One-word Script Headings
   ========================================================= */

.feature-text h3{
  margin: 0;
  line-height: 1;
}

.feature-text h3 .script{
  font-size: 1.8rem;
  line-height: 1;
}

.feature-text p{
  color: var(--text);
  line-height: 1.55;
}



/* =========================================================
   How — Typography
   ========================================================= */

.how-step{
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: var(--s-3);

  /* two rows: rail row + copy row */
  grid-template-rows: auto auto;
  align-items: start;
}

.how-icon{
  grid-column: 1;        /* rail row */
  align-self: center;  /* center in rail */
}

.how-step h3{
  grid-column: 2;
  grid-row: 1;         /* rail row */
  align-self: center;  /* match icon */
}

.how-step p{
  grid-column: 2;
  grid-row: 2;
  color: var(--text);
  font-family: var(--font-lato);
}

/* Icon */
.how-icon{
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.10));
}

/* Divider column: center the line to match step center */
.how-divider{
  display: flex;
  align-items: center;  /* KEY */
  justify-content: center;
}

.how-divider::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: color-mix(in srgb, var(--solva-pine) 65%, white);
  border-radius: 999px;
  opacity: 0.9;
}

/* Trust: Studio Philosophy and Values */
.trust-intro {
  max-width: 680px;
  margin: 0 auto var(--s-7);
  text-align: center;
  font-size: var(--text-md);
  color: var(--text);
}

.trust-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.trust-left {
  background: var(--brand-wash);
  padding: 0;
  border-radius: 0px 0px 264px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.trust-left .quote {
  max-width: 75%;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: var(--font-playfair);
  color: var(--text-strong);
  margin: 0 auto var(--s-4);
  text-align: left;  
}



.trust-right {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

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

.trust-values li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  line-height: 1.6;
}

.trust-values li::before {
  content: '';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.3rem; /* aligns with first line */
  background: url('../assets/images/logo_only.png') no-repeat center center;
  background-size: contain;
  display: inline-block;
}


.trust-values h3 {
  margin: 0 0 var(--s-2);
  font-size: 28px;
  font-family: var(--font-playfair);
  color: var(--solva-wine);
}

.trust-values p {
  margin: 0;
  font-size: var(--text-md);
  color: var(--text);
}

/* Responsive stack */
@media (max-width: 768px) {
  .trust-block {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  .trust-left {
    min-height: 200px;
  }

  .trust-intro {
    text-align: left;
  }
}

/* =============================================
   Access Model Components
   ============================================= */

.access .section-head h2 {
  font-family: var(--font-playfair);
  font-size: var(--h2);
  color: var(--text);
  margin-bottom: var(--s-3);
}

.access .section-head p {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
/* =============================================
   Access Cards - Component Styles
   ============================================= */

.access-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.3s ease;
}



.access-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-playfair);
  color: var(--text);
  margin: 0;
}

.access-card .access-sub {
  font-size: var(--text-md);
  color: var(--muted);
  margin: 0 0 var(--s-2);
  line-height: 1.6;
}

.access-card .access-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.access-card .access-list li {
  font-size: var(--text-md);
  color: var(--text);
  padding-left: var(--s-5);
  position: relative;
  font-family: var(--font-lato);
}

.access-card .access-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url('../assets/images/logo_only.png') no-repeat center center;
  background-size: contain;
}

.access-card .btn {
  margin-top: auto;
}

.access-icon {
  width: 36px;
  height: 36px;
}

.access-card-featured {
  background: var(--brand-wash);
  border: 2px solid var(--solva-pine);
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
   padding-top: 2.5rem; /* Or adjust as needed for balance */
  padding-bottom: 0;
}

.access-card-featured .access-icon {
  width: 128px;
  height: auto;
  display: block;
  margin: 0 auto;    /* <-- centers the image horizontally */
  padding: 0;
}


.access-card-featured h3 {
  font-size: var(--text-lg);
  color: var(--text);
  font-weight: 1000;
}

.access-card-featured::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: url('../assets/images/logo_only.png') no-repeat;
  background-size: 80px;
  opacity: 0.05;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.access-card-featured {
  position: relative;
  overflow: hidden; /* Ensure watermark stays within */
}

.access-card-featured::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px; /* Larger size for impact */
  height: 320px;
  transform: translate(-50%, -50%);
  background: url('../assets/images/logo_only.png') no-repeat center center;
  background-size: contain;
  opacity: 0.35; /* Slightly stronger visibility */
  filter: blur(0.4px); /* Softens it without hiding it */
  pointer-events: none;
  z-index: 0;
}

.access-card-featured > * {
  position: relative;
  z-index: 1;
}



.access-card-featured .btn-featured-cta {
  margin: 1.5rem auto 1rem;
  border: 1px solid color-mix(in srgb, var(--solva-wine) 80%, black);
  background: color-mix(in srgb, var(--solva-wine) 15%, white);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--solva-wine) 16%, transparent);
}

.access-card-featured .btn-featured-cta:hover {
  background: color-mix(in srgb, var(--solva-wine) 16%, white);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--solva-wine) 15%, transparent);
}

.access-card-featured .btn-featured-cta .btn-label {
  font-size: 1.05rem;
  color: var(--solva-wine);
}

.access-card-muted {
  background: var(--panel-2); 
  position: relative;
  padding: var(--s-6);
  border-radius: var(--radius);
  
  overflow: hidden;

}

/* Bullet with soft icon */
.access-card-muted .access-list li::before {
  content: '';
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: var(--s-2);
  background: url('../assets/images/icon-brushstroke.svg') no-repeat center;
  background-size: contain;
  opacity: 0.6;
}

#access-prototype {
  background: 
     url('../assets/images/watermark-pink.png') center/cover no-repeat;
  border-radius: var(--radius); /* adjust if needed */
}




.access-card-muted h3 {
  margin-top: var(--s-2); /* helps pull it up to match featured */
}

#access-prototype .btn-ghost {
  display: block;
  margin: var(--s-5) auto 0; /* center + spacing from list */
  padding: 12px 18px;
  font-size: 0.95rem;

  border: 1px solid color-mix(in srgb, var(--solva-pink) 40%, white);
  background: white;
  border-color: color-mix(in srgb, var(--solva-pink) 60%, transparent);
  color: var(--solva-wine);

  backdrop-filter: blur(2px);
  border-radius: var(--radius);
  transition: background 160ms ease, border 160ms ease;
}

#access-prototype .btn-ghost:hover {
  background: color-mix(in srgb, white 60%, var(--solva-pink) 40%);
  border-color: color-mix(in srgb, var(--solva-pink) 60%, white);
}

#access-feedback {
  background: 
    url('../assets/images/watermark-green.png') center/cover no-repeat;
  border-radius: var(--radius);
}

#access-feedback .btn {
  background: var(--solva-pine);
  border-color: var(--solva-pine);
  color: #fff;
  margin-top: var(--s-4);        /* Add space above button */
  margin-bottom: var(--s-2);     /* Space from card bottom */
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.access-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: var(--s-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* FAQ Section: Component Layer Enhancements */

/* Branded subtle visual elevation */
.faq-item {
  background: var(--hover-bg); /* Or use a light custom brand-tint */
  border-radius: var(--radius);
  border: 1px solid var(--hover-bg);
  backdrop-filter: blur(3px); /* Softens background slightly */
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* On hover or focus: slightly lift */
.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--solva-wine);
  background: var(--active-bg);
}

/* Custom summary typography */
.faq-item summary {
  font-family: var(--font-lato);
  letter-spacing: 0;
  color: var(--text);
  padding-bottom: 0.3rem;
}

/* Satisfy headline as optional variant */
.faq-item summary span.faq-label {
  font-family: var(--font-satisfy);
  font-size: 1.1rem;
  color: var(--solva-pink);
}

/* Answer paragraph tone */
.faq-item p {
  font-family: var(--font-lato);
  font-size: 0.95rem;
  color: var(--muted);
}

/* Optional: animated fade-in on open */
.faq-item[open] p {
  animation: fadeIn 200ms ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-4);
  justify-content: center;
}

@media (min-width: 768px) {
  .cta .hero-actions {
    justify-content: flex-start;
  }
}

.cta .btn-outline {
  border: 1px solid var(--btnBorder);
  background: transparent;
  color: var(--text);
}

.cta .btn-outline:hover {
  background: var(--hover-bg);
  border-color: var(--btnPrimary);
}

.cta-note {
  margin-top: var(--s-4);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  max-width: 50ch;
}

.cta-visual img {
  width: 100%;
  max-width: 460px;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50px;

  -webkit-mask-image:
    linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%);
  
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

@media (max-width: 900px){
  .cta-visual img {
    height: 360px;

    -webkit-mask-image: radial-gradient(
      ellipse at center,
      rgba(0,0,0,1) 80%,
      rgba(0,0,0,0.9) 90%,
      rgba(0,0,0,0) 100%
    );
  }
}

.site-footer {
  background: var(--brand-wash);
}


/* Footer Branding */
.brand-footer {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.brand-footer .brand-logo {
  max-width: 96px;
  height: auto;
}


.footer-note {
  margin-top: var(--s-2);
  color: var(--muted);
  max-width: 40ch;
}

.footer-contact {
  margin-top: var(--s-2);
  font-size: var(--text-s);
  color: var(--text);
}

.email-link {
  color: var(--solva-rose);
  text-decoration: underline;
  font-weight: 500;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: var(--s-4);
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
  }
}


/* Footer Links */
.footer-links a {
  font-size: var(--text-s);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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


.back-to-top{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: white;
  border: 1px solid var(--solva-pine);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.back-to-top:hover{ background: var(--solva-pink); }

@media (max-width: 720px){
  .btn{
    padding: 12px 14px;
    border-radius: 14px;
  }

  .card,
  .feature,
  .preview-shot,
  .price-card{ padding: var(--s-5); }

  .section.cta .cta-inner{ padding: var(--s-6); }
}

/* Studio Teknabu */

/* Partner line */

.footer-partner-link{
  font-size: var(--font-size-sm);
  color: var(--color-mid-grey);
  text-decoration: none;
}

.footer-partner-link:hover,
.footer-partner-link:focus-visible{
  text-decoration: underline;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
}


.brand-studio {
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: .01em;
  /* softer than TEKNABU for hierarchy */
  color: color-mix(in oklab, #468BE5, #1A1A1A 30%);
}

.brand-teknabu {
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(
    135deg,
    #5A4DFF 0%,
    #468BE5 48%,
    #1A5799 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 .25px 0 rgba(0,0,0,.2);
}

/* =============================================
   Mobile-First Responsive Pass (Components)
   ============================================= */

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.hero-title,
.hero-subtitle,
.section-head p,
.feature-text p,
.way-content p,
.faq-item p,
.access-card .access-sub {
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.2vw, 2.5rem);
    line-height: 1.18;
    max-width: 15ch;
  }

  .hero-subtitle {
    font-size: clamp(0.96rem, 2.9vw, 1rem);
    line-height: 1.7;
    max-width: 42ch;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 5.2vw, 1.9rem);
    line-height: 1.2;
  }

  .section-head p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .eyebrow {
    font-size: 0.93rem;
  }

  .site-nav {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.14);
    padding: 14px;
    max-height: calc(100vh - 140px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
    backdrop-filter: blur(8px);
  }

  .site-nav .nav-link {
    min-height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 2px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-link {
    min-height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--btnBorder);
    border-radius: 14px;
    background: color-mix(in srgb, var(--panel) 84%, white);
    color: var(--solva-wine);
    font-weight: 600;
    font-family: var(--font-lato);
    font-size: 0.92rem;
    line-height: 1;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 140ms ease, border-color 140ms ease, transform 120ms ease, box-shadow 140ms ease;
  }

  .nav-toggle-icon {
    width: 18px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-toggle-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--solva-wine);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 140ms ease;
    transform-origin: center;
  }

  .nav-toggle:focus-visible {
    outline: none;
    box-shadow: var(--focus);
  }

  .nav-toggle-label {
    letter-spacing: 0.01em;
  }

  .nav-toggle:hover {
    background: var(--hover-bg);
    border-color: color-mix(in srgb, var(--btnBorder) 72%, black);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .nav-toggle:active {
    transform: scale(0.98);
  }

  body.nav-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 16, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
    z-index: 45;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid var(--btnBorder);
    background: color-mix(in srgb, var(--panel) 88%, white);
    border-radius: 10px;
    color: var(--solva-wine);
    font-weight: 600;
    font-family: var(--font-lato);
    font-size: 0.92rem;
    line-height: 1;
    cursor: pointer;
  }

  .site-nav .nav-close:hover {
    background: var(--hover-bg);
  }

  .site-nav .nav-close:active {
    transform: scale(0.98);
  }

  .preview-col {
    gap: var(--s-2);
  }

  .preview-col > p {
    min-height: 0;
    max-width: none;
  }

  .preview-shot img,
  .hero-media img,
  .cta-visual img,
  .way-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .feature-text h3 .script {
    font-size: 1.55rem;
  }

  .trust-left {
    border-radius: 0 0 140px 0;
    min-height: 220px;
  }

  .trust-left .quote {
    max-width: 84%;
    font-size: 1.05rem;
  }

  .access-card {
    padding: var(--s-5);
    gap: var(--s-3);
  }

  .access-card .btn,
  #access-prototype .btn-ghost,
  #access-feedback .btn,
  .access-card-featured .btn-featured-cta {
    width: 100%;
    min-height: 44px;
  }

  .faq-item {
    padding: 1rem 1rem 1.1rem;
  }

  .faq-item summary {
    font-size: 1rem;
    line-height: 1.45;
    padding-right: 1.25rem;
  }

  .cta .hero-actions {
    align-items: stretch;
  }

  .cta-note {
    max-width: none;
  }

  .footer-note,
  .footer-contact {
    max-width: none;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  /* Trust section mobile polish */
  .section-trust .container {
    width: min(var(--container), calc(100% - 2 * var(--s-4)));
    max-width: var(--container);
  }

  .section-trust .section-head {
    margin-bottom: var(--s-5);
    text-align: left;
  }

  .section-trust .section-head h2 {
    font-size: clamp(1.55rem, 6.1vw, 1.95rem);
    line-height: 1.2;
    margin-bottom: var(--s-2);
  }

  .section-trust .section-head p {
    margin-top: var(--s-3);
    font-size: 1rem;
    line-height: 1.72;
  }

  .section-trust .trust-block {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    align-items: stretch;
  }

  .section-trust .trust-left {
    min-height: auto;
    padding: var(--s-5);
    border-radius: 0 0 110px 0;
  }

  .section-trust .trust-left .quote {
    max-width: 100%;
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.62;
  }

  .section-trust .trust-left .quote p:last-of-type {
    margin-bottom: var(--s-2);
  }

  .section-trust .trust-right {
    background: var(--panel);
    border: 1px solid color-mix(in srgb, var(--solva-rose) 28%, white);
    border-radius: 16px;
    box-shadow: var(--shadow-1);
    padding: var(--s-5);
    gap: var(--s-4);
  }

  .section-trust .trust-values h3 {
    font-size: clamp(1.4rem, 5.8vw, 1.7rem);
    margin-bottom: var(--s-3);
  }

  .section-trust .trust-values ul {
    display: grid;
    gap: var(--s-3);
  }

  .section-trust .trust-values li {
    margin-bottom: 0;
    line-height: 1.65;
  }

  .section-trust .trust-values li::before {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.25rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
    line-height: 1.66;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8.2vw, 2.25rem);
    max-width: 14ch;
  }

  .hero-subtitle {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .script {
    white-space: normal;
  }

  .preview-label::before {
    width: calc(100% + 120px);
    height: calc(100% + 52px);
  }

  .preview-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .feature-content {
    row-gap: var(--s-2);
  }

  .how-step h3 {
    line-height: 1.2;
  }

  .cta-visual img {
    max-height: 360px;
    border-radius: 30px;
  }

  .brand-footer .brand-logo {
    max-width: 78px;
  }

  .section-trust .container {
    width: min(var(--container), calc(100% - 2 * var(--s-3)));
  }

  .section-trust .trust-left {
    padding: var(--s-4);
    border-radius: 0 0 88px 0;
  }

  .section-trust .trust-left .quote {
    font-size: 1rem;
  }

  .section-trust .trust-right {
    padding: var(--s-4);
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(1.72rem, 8.6vw, 2rem);
  }

  .nav-link,
  .btn {
    font-size: 0.94rem;
  }

  .section-trust .trust-left,
  .section-trust .trust-right {
    padding: 14px;
  }
}

@media (min-width: 769px) {
  .site-nav {
    display: flex;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .nav-toggle,
  .site-nav .nav-close,
  .nav-backdrop {
    display: none;
  }
}

/* Legal pages */
.legal-section {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--solva-pink) 7%, white),
    var(--bg)
  );
}

.legal-wrap {
  max-width: 900px;
}

.legal-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  line-height: 1.18;
  margin: 0 0 var(--s-2);
}

.legal-back {
  margin-top: var(--s-3);
  display: inline-flex;
}

.legal-card {
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--solva-rose) 22%, white);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: clamp(18px, 2.4vw, 32px);
}

.legal-card h2 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
  color: var(--solva-wine);
}

.legal-card p {
  margin-bottom: var(--s-3);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 768px) {
  .legal-wrap {
    max-width: 100%;
  }

  .legal-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .legal-card {
    border-radius: 14px;
    padding: 16px;
  }

  .legal-card h2 {
    margin-top: var(--s-4);
  }
}
