:root {
  --cream: #f4e7e5;
  --cream-soft: #fcf6f1;
  --paper: #fefbf8;
  --peach: #cf8061;
  --peach-soft: #e6b46b;
  --sage: #b7839d;
  --sage-dark: #765074;
  --taupe: #8b5778;
  --brown: #49264f;
  --brown-soft: #756371;
  --line: rgba(79, 43, 84, 0.14);
  --shadow: 0 28px 80px rgba(67, 36, 73, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--brown);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(111, 128, 100, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--brown);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brown);
  box-shadow: 0 12px 30px rgba(74, 57, 45, 0.2);
  color: white;
}

.button-primary:hover {
  background: #33271f;
  box-shadow: 0 15px 34px rgba(74, 57, 45, 0.26);
}

.button-secondary {
  border-color: rgba(74, 57, 45, 0.22);
  background: rgba(255, 255, 255, 0.38);
}

.button-secondary:hover {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(74, 57, 45, 0.38);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.3;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.91);
  box-shadow: 0 10px 35px rgba(74, 57, 45, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border: 1px solid rgba(74, 57, 45, 0.28);
  border-radius: 50% 50% 48% 52% / 45% 52% 48% 55%;
  background: rgba(255, 253, 249, 0.28);
  transform: rotate(-2deg);
}

.brand-mark img {
  width: 37px;
  height: 37px;
  transform: rotate(2deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--brown-soft);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 34px);
}

.primary-navigation > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  color: var(--brown-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--taupe);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation > a:hover::after,
.primary-navigation > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(74, 57, 45, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--brown);
  color: white;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 6px 0;
  background: var(--brown);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  place-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(108, 82, 62, 0.09) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.wash {
  position: absolute;
  width: clamp(260px, 31vw, 520px);
  height: 70%;
  opacity: 0.5;
  filter: blur(1px);
}

.wash-peach {
  top: 5%;
  left: -10%;
  border-radius: 34% 66% 49% 51% / 50% 28% 72% 50%;
  background: linear-gradient(145deg, rgba(233, 173, 135, 0.8), rgba(242, 204, 178, 0.28));
  transform: rotate(5deg);
}

.wash-sage {
  right: -12%;
  bottom: -3%;
  border-radius: 65% 35% 56% 44% / 36% 59% 41% 64%;
  background: linear-gradient(145deg, rgba(169, 181, 155, 0.65), rgba(216, 222, 204, 0.2));
  transform: rotate(-9deg);
}

.hero-sprig {
  position: absolute;
  z-index: 1;
  width: clamp(280px, 34vw, 560px);
  opacity: 0.92;
  pointer-events: none;
}

.hero-sprig-left {
  bottom: -5%;
  left: -4%;
  transform: rotate(-10deg);
}

.hero-sprig-right {
  right: -3%;
  bottom: -7%;
  transform: scaleX(-1) rotate(-5deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 9.2vw, 8.7rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 span {
  display: block;
  margin-bottom: 24px;
  color: var(--taupe);
  font-size: 0.67em;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(0.1em);
}

.hero-lead {
  max-width: 660px;
  margin: 0 auto 32px;
  color: var(--brown-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

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

.hero-values {
  display: flex;
  justify-content: center;
  gap: 12px 32px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--brown-soft);
  font-size: 0.75rem;
  list-style: none;
}

.hero-values li {
  position: relative;
}

.hero-values li + li::before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-dark);
  content: "";
  transform: translateY(-50%);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 43px;
  place-items: start center;
  border: 1px solid rgba(74, 57, 45, 0.3);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--brown);
  animation: scrollCue 1.7s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(9px); }
}

/* About */
.about {
  background: var(--paper);
}

.about::before {
  position: absolute;
  z-index: 0;
  top: -130px;
  right: -150px;
  width: 540px;
  height: 540px;
  border-radius: 58% 42% 47% 53% / 46% 55% 45% 54%;
  background: radial-gradient(circle at 42% 42%, rgba(169, 181, 155, 0.16), transparent 68%);
  content: "";
  pointer-events: none;
  transform: rotate(-8deg);
}

.about::after {
  position: absolute;
  z-index: 0;
  bottom: 6%;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 46% 54% 62% 38% / 55% 44% 56% 45%;
  background: radial-gradient(circle at 50% 50%, rgba(233, 173, 135, 0.13), transparent 66%);
  content: "";
  pointer-events: none;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.portrait-wrap {
  position: relative;
  max-width: 500px;
}

.portrait {
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  box-shadow: inset 0 0 45px rgba(74, 57, 45, 0.06);
  content: "";
}

.portrait-history {
  aspect-ratio: 540 / 523;
  border-radius: 34px 8px 34px 8px;
  background-image: url("assets/historia.jpg");
  background-position: 8.5% 68.4%;
  background-size: 296.3% auto;
}

.paper-tape {
  position: absolute;
  z-index: 3;
  top: -22px;
  right: -26px;
  width: 148px;
  height: 48px;
  background:
    radial-gradient(circle at 15px 17px, rgba(74, 57, 45, 0.24) 1.2px, transparent 1.8px) 0 0 / 25px 22px,
    linear-gradient(100deg, rgba(233, 173, 135, 0.88), rgba(241, 202, 134, 0.8));
  clip-path: polygon(3% 13%, 100% 0, 96% 87%, 0 100%);
  opacity: 0.9;
  transform: rotate(7deg);
}

.portrait-note {
  position: absolute;
  right: -42px;
  bottom: 30px;
  width: min(270px, 70%);
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 16px 40px rgba(74, 57, 45, 0.1);
  color: var(--brown-soft);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.45;
}

.portrait-note span {
  margin-right: 6px;
  color: var(--peach);
}

.about-copy {
  max-width: 620px;
}

.lead-copy {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.lead-copy) {
  color: var(--brown-soft);
}

blockquote {
  margin: 34px 0;
  padding: 22px 0 22px 26px;
  border-left: 2px solid var(--peach);
  color: var(--taupe);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  line-height: 1.45;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 140px);
  margin-top: clamp(100px, 13vw, 175px);
  padding-top: clamp(60px, 8vw, 96px);
  border-top: 1px solid var(--line);
}

.story-heading h2 {
  max-width: 510px;
  margin-bottom: 34px;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.story-line {
  display: block;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, var(--peach), transparent);
}

.story-copy {
  max-width: 690px;
}

.story-copy p {
  margin-bottom: 26px;
  color: var(--brown-soft);
}

.story-copy p:first-child {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  line-height: 1.55;
}

.story-copy p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--taupe);
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.76;
}

.story-copy .story-closing {
  margin: 36px 0 0;
  padding: 24px 28px;
  border-left: 2px solid var(--sage);
  background: rgba(169, 181, 155, 0.1);
  color: var(--brown);
  font-weight: 600;
}

/* Services */
.services {
  padding-bottom: clamp(190px, 17vw, 255px);
  background: #faf9f5;
}

.services::before {
  position: absolute;
  top: -60px;
  right: 10%;
  width: 380px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  content: "";
  filter: blur(25px);
  transform: rotate(-12deg);
}

.services-sprig {
  position: absolute;
  z-index: 2;
  right: -70px;
  bottom: 88px;
  width: 460px;
  opacity: 0.55;
  transform: scaleX(-1) rotate(-14deg);
}

.services > .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 82px);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 0 auto;
  color: var(--brown-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 365px;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(170, 144, 120, 0.22);
  border-radius: var(--radius-md);
  background: #fbf3e8;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(111, 128, 100, 0.3);
  background: #fcf6ed;
}

.service-card h3 {
  min-height: 2.25em;
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
}

.service-card ul {
  display: grid;
  gap: 18px;
  margin: 20px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 31px;
  color: var(--brown-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-card li::before {
  position: absolute;
  top: 0.52em;
  left: 2px;
  width: 13px;
  height: 8px;
  border: 2px solid #9caf8d;
  border-radius: 100% 0 100% 0;
  content: "";
  transform: rotate(-28deg);
}

.section-wave {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(92px, 10vw, 140px);
  pointer-events: none;
}

.section-wave svg {
  width: 100%;
  height: 100%;
}

.wave-back {
  fill: #f1ece3;
}

.wave-front {
  fill: #e9e1d4;
}

.soft-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
  padding: 26px 32px;
  border: 1px solid rgba(74, 57, 45, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
}

.soft-note-mark {
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.6;
  transform: translateY(7px);
}

.soft-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

/* Process */
.process {
  background: #e9e1d4;
}

.process::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(108, 82, 62, 0.1) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  content: "";
  opacity: 0.4;
  pointer-events: none;
}

.process-glow {
  position: absolute;
  z-index: 0;
  top: -90px;
  right: -140px;
  width: 470px;
  height: 470px;
  border-radius: 60% 40% 52% 48% / 43% 57% 43% 57%;
  background: radial-gradient(circle at 45% 45%, rgba(233, 173, 135, 0.22), transparent 64%);
  pointer-events: none;
  transform: rotate(10deg);
}

.process-sprig {
  position: absolute;
  z-index: 0;
  bottom: -40px;
  left: -80px;
  width: 340px;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(8deg);
}

.process-grid {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(70px, 11vw, 150px);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--brown-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 26px;
  padding: 12px 0 48px;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  padding-top: 48px;
}

.process-list li > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(74, 57, 45, 0.16);
  border-radius: 50%;
  color: var(--taupe);
  font-family: var(--font-display);
  font-size: 1rem;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--brown-soft);
}

/* E-book */
.ebook {
  background: var(--paper);
}

.ebook::before {
  position: absolute;
  top: 12%;
  left: -8%;
  width: 330px;
  height: 330px;
  border-radius: 44% 56% 61% 39% / 52% 42% 58% 48%;
  background: rgba(233, 173, 135, 0.12);
  content: "";
  transform: rotate(15deg);
}

.ebook::after {
  position: absolute;
  right: -10%;
  bottom: 4%;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 47% 53% / 45% 56% 44% 55%;
  background: radial-gradient(circle at 50% 50%, rgba(169, 181, 155, 0.16), transparent 66%);
  content: "";
  pointer-events: none;
}

.ebook-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 12vw, 165px);
}

.ebook-copy {
  max-width: 650px;
}

.ebook-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--brown-soft);
}

.ebook-visual {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.ebook-shadow {
  position: absolute;
  bottom: 42px;
  width: 300px;
  height: 55px;
  border-radius: 50%;
  background: rgba(74, 57, 45, 0.17);
  filter: blur(22px);
}

.ebook-book {
  position: relative;
  display: flex;
  width: min(310px, 82vw);
  aspect-ratio: 0.74;
  justify-content: flex-end;
  flex-direction: column;
  padding: 42px 38px;
  border: 1px solid rgba(170, 144, 120, 0.24);
  border-radius: 5px 18px 18px 5px;
  background:
    radial-gradient(circle at 70% 17%, rgba(169, 181, 155, 0.23), transparent 32%),
    linear-gradient(145deg, #f6e7d7, #fbf6ed);
  box-shadow: -12px 12px 0 #e8dfd2, 0 34px 70px rgba(74, 57, 45, 0.17);
  transform: rotate(4deg);
}

.ebook-book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 1px;
  background: rgba(74, 57, 45, 0.12);
  content: "";
}

.ebook-book img {
  position: absolute;
  top: 42px;
  right: 38px;
  width: 76px;
  opacity: 0.78;
}

.ebook-book span {
  margin-bottom: 9px;
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ebook-book strong {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.ebook-book i {
  width: 76px;
  height: 1px;
  margin-top: 22px;
  background: var(--taupe);
}

/* FAQ */
.faq {
  background: var(--cream);
}

.faq::after {
  position: absolute;
  right: -7%;
  bottom: -230px;
  width: 500px;
  height: 500px;
  border-radius: 44% 56% 58% 42% / 52% 39% 61% 48%;
  background: rgba(169, 181, 155, 0.19);
  content: "";
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro > p:last-child {
  max-width: 470px;
  color: var(--brown-soft);
}

.accordion {
  border-top: 1px solid rgba(74, 57, 45, 0.17);
}

.accordion details {
  border-bottom: 1px solid rgba(74, 57, 45, 0.17);
}

.accordion summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.48rem);
  line-height: 1.3;
  list-style: none;
}

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

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 1px;
  background: var(--brown);
  content: "";
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 680px;
  margin: -4px 50px 24px 0;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(480px, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;
}

.contact-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(169, 181, 155, 0.15);
  box-shadow: var(--shadow);
}

.wash-contact {
  top: -6%;
  left: -16%;
  width: clamp(240px, 60%, 360px);
  height: 42%;
  border-radius: 34% 66% 49% 51% / 50% 28% 72% 50%;
  background: linear-gradient(145deg, rgba(233, 173, 135, 0.55), rgba(242, 204, 178, 0.18));
  transform: rotate(8deg);
}

.portrait-contact {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(78%, 380px);
  aspect-ratio: 487 / 603;
  border-radius: 22px;
  background-image: url("assets/kontakt.jpg");
  background-position: 88.2% 44.1%;
  background-size: 328.5% auto;
  box-shadow: 0 18px 40px rgba(74, 62, 50, 0.18);
  transform: translate(-50%, -50%);
}

.contact-sprig {
  position: absolute;
  z-index: 0;
  bottom: -26px;
  left: -34px;
  width: 320px;
  opacity: 0.85;
  transform: rotate(-16deg);
}

.contact-copy {
  position: relative;
  z-index: 3;
  padding: clamp(50px, 7vw, 90px) clamp(34px, 7vw, 94px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-soft);
  box-shadow: var(--shadow);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--brown-soft);
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 8px;
}

.contact-form label > span:first-child {
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 650;
}

.contact-form .label-optional {
  color: #a4978b;
  font-weight: 500;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 57, 45, 0.17);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input:not([type="checkbox"]) {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a4978b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage-dark);
  background: white;
  box-shadow: 0 0 0 4px rgba(111, 128, 100, 0.1);
}

.contact-form .is-invalid {
  border-color: #a65252 !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 4px 0 0;
  accent-color: var(--sage-dark);
}

.consent span {
  color: var(--brown-soft);
  font-size: 0.76rem !important;
  font-weight: 400 !important;
}

.contact-form .button {
  width: fit-content;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sage-dark) !important;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Support */
.support-section {
  padding: 0 0 clamp(88px, 10vw, 140px);
  background: var(--paper);
}

.support-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(170, 144, 120, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 20%, rgba(169, 181, 155, 0.22), transparent 24%),
    linear-gradient(125deg, #f6e8d9, #fbf6ed);
}

.support-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(74, 57, 45, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.support-icon svg {
  width: 42px;
  fill: none;
  stroke: var(--taupe);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.support-copy .eyebrow {
  margin-bottom: 10px;
}

.support-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
}

.support-copy > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--brown-soft);
  font-size: 0.9rem;
}

.coffee-button {
  gap: 10px;
  background: var(--taupe);
  color: white;
  white-space: nowrap;
}

.coffee-button:hover {
  background: #8f765f;
  box-shadow: 0 14px 30px rgba(74, 57, 45, 0.16);
}

/* Footer */
.site-footer {
  padding: 62px 0 28px;
  background: #3e332b;
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.brand-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--peach-soft);
}

.brand-footer .brand-mark img {
  filter: brightness(1.35) saturate(0.8);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 30px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.79rem;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  fill: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.js .reveal-delay-1 { transition-delay: 100ms; }
.js .reveal-delay-2 { transition-delay: 200ms; }
.js .reveal-delay-3 { transition-delay: 300ms; }

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

@media (max-width: 1020px) {
  .primary-navigation { gap: 18px; }
  .primary-navigation > a:not(.nav-cta) { font-size: 0.84rem; }
  .brand-copy small { display: none; }

  .about-grid {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: 70px;
  }

  .story-panel { grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr); gap: 70px; }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-shell {
    grid-template-columns: 0.62fr 1fr;
  }

  .contact-visual { min-height: 720px; }
  .portrait-contact { width: 86%; }
  .contact-copy { padding-inline: 58px; }
  .form-row { grid-template-columns: 1fr; }

  .support-card { grid-template-columns: auto 1fr; }
  .coffee-button { grid-column: 1 / -1; width: fit-content; margin-left: 108px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }

  .header-inner { min-height: 76px; }
  .header-inner > .brand { position: relative; z-index: 102; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-mark img { width: 33px; height: 33px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .primary-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    padding: 90px 24px 40px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation > a:not(.nav-cta) {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
  }

  .nav-cta { margin-top: 14px; padding: 14px 26px; font-size: 0.96rem; }

  .hero { min-height: 760px; padding-top: 110px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 6.2rem); }
  .hero h1 span { margin-bottom: 18px; letter-spacing: 0.16em; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-values { flex-wrap: wrap; gap: 8px 24px; }
  .hero-values li + li::before { left: -14px; }
  .hero-sprig { width: 280px; opacity: 0.55; }
  .hero-sprig-left { left: -120px; }
  .hero-sprig-right { right: -105px; }

  .about-grid,
  .story-panel,
  .process-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-grid { gap: 75px; }
  .story-panel { gap: 44px; margin-top: 120px; }
  .portrait-wrap { width: min(88%, 480px); margin-inline: auto; }
  .portrait-note { right: -28px; }
  .about-copy { max-width: none; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:last-child { grid-column: auto; min-height: 0; }
  .service-card h3 { min-height: 0; }
  .services { padding-bottom: 155px; }
  .services-sprig { right: -100px; bottom: 50px; width: 290px; opacity: 0.4; }
  .section-wave { height: 86px; }
  .soft-note { grid-template-columns: auto 1fr; }
  .soft-note .button { grid-column: 1 / -1; width: 100%; }

  .process-intro { position: static; }
  .process-grid { gap: 62px; }
  .process-sprig { width: 220px; bottom: 20px; left: -90px; opacity: 0.28; }
  .process-glow { width: 320px; right: -110px; }
  .faq-grid { gap: 40px; }

  .ebook-shell { grid-template-columns: 1fr; gap: 45px; }
  .ebook-copy { max-width: none; }
  .ebook-visual { min-height: 430px; }

  .contact-shell { gap: 30px; }
  .contact-visual { min-height: 520px; border-radius: 24px; }
  .portrait-contact { width: min(76%, 365px); }
  .contact-sprig { bottom: -18px; left: -70px; width: 240px; opacity: 0.6; }
  .contact-copy { padding: 50px 28px; border-radius: 24px; }

  .footer-main,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }

  .support-card { grid-template-columns: 1fr; text-align: left; }
  .support-icon { width: 68px; height: 68px; }
  .coffee-button { grid-column: auto; width: 100%; margin-left: 0; white-space: normal; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  h2 { font-size: 2.65rem; }
  .hero { min-height: 720px; }
  .hero-lead { font-size: 0.94rem; }
  .hero .button { width: 100%; }
  .hero-values { display: none; }
  .scroll-cue { display: none; }

  .portrait-wrap { width: 92%; }
  .paper-tape { width: 110px; height: 38px; right: -12px; }
  .portrait-note { right: -9px; bottom: -36px; width: 84%; }

  .story-panel { margin-top: 112px; padding-top: 64px; }
  .story-copy .story-closing { padding: 20px; }

  .service-card { padding: 30px 24px; }
  .soft-note { padding: 24px 20px; }

  .process-list li { grid-template-columns: 50px 1fr; gap: 18px; }
  .process-list li > span { width: 46px; height: 46px; }

  .accordion summary { padding-right: 40px; }
  .accordion details p { margin-right: 18px; }

  .contact-visual { min-height: 450px; }
  .portrait-contact { width: min(82%, 330px); }
  .contact-copy { padding-inline: 20px; }
  .contact-form .button { width: 100%; }

  .ebook-book { width: min(280px, 78vw); }
  .support-card { padding: 30px 22px; }

  .footer-social { align-items: flex-start; flex-direction: column; }
}

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

/* Motyw inspirowany identyfikacją Ewa Doula: śliwka, róż i ciepłe złoto */
body {
  background: #fdf9f6;
}

:focus-visible {
  outline-color: rgba(226, 183, 100, 0.72);
}

.eyebrow {
  color: #805078;
}

.button {
  min-height: 56px;
  padding-inline: 27px;
  border-radius: 18px 18px 18px 5px;
}

.button-primary,
.coffee-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f2d182, #e8b563 70%, #d9955b);
  box-shadow: 0 14px 34px rgba(104, 61, 87, 0.2);
  color: #4f2858;
}

.button-primary:hover,
.coffee-button:hover {
  background: linear-gradient(135deg, #f6d994, #ecc071 70%, #dda066);
  box-shadow: 0 17px 38px rgba(83, 47, 79, 0.24);
}

.button-secondary {
  border-color: rgba(93, 54, 96, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: #663c6d;
}

.text-link {
  border-bottom-color: rgba(112, 72, 105, 0.4);
  color: #70486d;
}

/* Nagłówek pozostaje lekki na gradiencie, a po przewinięciu staje się szklany. */
.site-header {
  color: white;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(81, 42, 101, 0.9);
  box-shadow: 0 14px 40px rgba(54, 28, 66, 0.18);
}

.site-header .brand-mark {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.site-header .brand-mark img {
  filter: none;
}

.site-header .brand-copy small,
.primary-navigation > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.78);
}

.primary-navigation > a:not(.nav-cta)::after {
  height: 2px;
  background: #e8c777;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.nav-cta:hover {
  border-color: #f0d38d;
  background: #f5e1ac;
  color: #54305d;
}

.menu-toggle span {
  background: white;
}

/* Hero powtarza pionowy gradient i świetliste fale z grafiki referencyjnej. */
.hero {
  min-height: max(760px, 100svh);
  color: white;
  background:
    radial-gradient(circle at 15% 23%, rgba(176, 111, 170, 0.2), transparent 28%),
    radial-gradient(circle at 82% 50%, rgba(206, 139, 108, 0.16), transparent 30%),
    linear-gradient(180deg, #592475 0%, #68317e 28%, #82457d 51%, #a76173 70%, #c47c51 85%, #dda23c 100%);
}

.hero::before {
  background:
    radial-gradient(circle at 50% 100%, rgba(242, 211, 136, 0.28), transparent 36%),
    radial-gradient(rgba(255, 255, 255, 0.13) 0.7px, transparent 0.8px);
  background-size: auto, 8px 8px;
  opacity: 0.28;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -31%;
  left: -8%;
  height: 58%;
  border: 2px solid rgba(255, 226, 133, 0.21);
  border-radius: 50%;
  box-shadow:
    0 -24px 0 rgba(255, 210, 93, 0.06),
    0 -58px 0 rgba(255, 224, 132, 0.045),
    0 -94px 0 rgba(255, 238, 177, 0.035);
  content: "";
  pointer-events: none;
  transform: rotate(-3deg);
}

.hero .wash {
  z-index: 0;
  width: 86%;
  height: 23%;
  border: 1px solid rgba(255, 224, 138, 0.16);
  background: transparent;
  filter: none;
  opacity: 0.75;
}

.hero .wash-peach {
  top: auto;
  bottom: -5%;
  left: -20%;
  border-radius: 50%;
  box-shadow: 0 -18px 0 rgba(255, 228, 145, 0.035);
  transform: rotate(9deg);
}

.hero .wash-sage {
  right: -21%;
  bottom: -2%;
  border-radius: 50%;
  box-shadow: 0 -23px 0 rgba(255, 228, 145, 0.04);
  transform: rotate(-10deg);
}

.hero-sprig {
  filter: brightness(0) invert(1);
  opacity: 0.16;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.hero-feather {
  position: static;
  width: min(100%, 390px);
  padding-right: clamp(28px, 3.3vw, 52px);
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  justify-self: end;
  opacity: 1;
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 30px;
  text-shadow: 0 12px 38px rgba(50, 12, 63, 0.2);
}

.hero h1 span {
  color: #f1cf7d;
}

.hero .eyebrow {
  color: #f0cf82;
  letter-spacing: 0.26em;
}

.hero .button-primary {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 252, 249, 0.96);
  box-shadow: 0 16px 38px rgba(57, 31, 68, 0.22);
  color: #5d326b;
}

.hero .button-primary:hover {
  background: white;
  box-shadow: 0 18px 42px rgba(57, 31, 68, 0.27);
}

.hero-inner {
  width: 100%;
  max-width: 790px;
  margin: 0;
  text-align: left;
}

.hero-lead {
  margin-left: 0;
}

.hero-actions,
.hero-values {
  justify-content: flex-start;
}

.hero-lead,
.hero-values {
  color: rgba(255, 255, 255, 0.86);
}

.hero .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.54);
  color: white;
}

.hero-values li + li::before {
  background: #efd28b;
}

.scroll-cue {
  border-color: rgba(255, 255, 255, 0.5);
}

.scroll-cue span {
  background: white;
}

/* Jasne sekcje zachowują ciepło dolnej części gradientu. */
.about {
  background:
    radial-gradient(circle at 100% 8%, rgba(131, 78, 120, 0.08), transparent 30%),
    linear-gradient(180deg, #fdf9f5, #f5e9e7);
}

.about::before {
  background: radial-gradient(circle at 42% 42%, rgba(112, 69, 108, 0.12), transparent 68%);
}

.about::after {
  background: radial-gradient(circle at 50% 50%, rgba(222, 164, 79, 0.14), transparent 66%);
}

.portrait {
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 32px 82px rgba(82, 24, 84, 0.2);
}

.portrait::after {
  background: linear-gradient(180deg, rgba(102, 25, 105, 0.08), rgba(242, 150, 64, 0.1));
  box-shadow: inset 0 0 48px rgba(80, 18, 75, 0.08);
}

.paper-tape {
  background:
    radial-gradient(circle at 15px 17px, rgba(91, 27, 92, 0.2) 1.2px, transparent 1.8px) 0 0 / 25px 22px,
    linear-gradient(100deg, rgba(235, 197, 116, 0.94), rgba(211, 141, 98, 0.86));
}

.portrait-note {
  border-color: rgba(111, 31, 103, 0.18);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 18px 48px rgba(80, 20, 78, 0.14);
}

blockquote {
  border-left-color: #dba35f;
  color: #754e70;
}

.story-line {
  background: linear-gradient(90deg, #e2b66c, #895675, transparent);
}

.story-copy .story-closing {
  border-left-color: #855477;
  background: rgba(125, 79, 116, 0.07);
}

/* Ciemna sekcja ofertowa działa jak mocny, elegancki pas marki. */
.services {
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(188, 112, 137, 0.23), transparent 30%),
    linear-gradient(145deg, #512668 0%, #6b3878 50%, #875174 100%);
}

.services::before {
  background: rgba(229, 183, 102, 0.13);
}

.services .eyebrow,
.services .soft-note-mark {
  color: #edcf87;
}

.services .section-heading > p:last-child,
.services .service-card li {
  color: rgba(255, 255, 255, 0.76);
}

.service-card {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 28px 28px 28px 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 22px 60px rgba(38, 8, 51, 0.2);
  backdrop-filter: blur(8px);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(237, 207, 135, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075));
  transform: translateY(-5px);
}

.service-card ul {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.service-card li::before {
  border-color: #edcf87;
}

.soft-note {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.services .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.services .button-secondary:hover {
  border-color: #edcf87;
  background: #f3dda8;
  color: #58305f;
}

.services-sprig {
  filter: brightness(0) invert(1);
  opacity: 0.17;
}

.wave-back {
  fill: #dda960;
}

.wave-front {
  fill: #f0d6ca;
}

.process {
  background:
    radial-gradient(circle at 88% 10%, rgba(218, 167, 86, 0.25), transparent 27%),
    linear-gradient(135deg, #f0d6ca 0%, #f7e9e2 58%, #e7bb72 125%);
}

.process::before {
  background-image: radial-gradient(rgba(107, 31, 104, 0.12) 0.7px, transparent 0.8px);
}

.process-glow {
  background: radial-gradient(circle at 45% 45%, rgba(126, 78, 116, 0.14), transparent 64%);
}

.process-list li > span {
  border-color: rgba(108, 70, 105, 0.23);
  background: rgba(255, 255, 255, 0.46);
  color: #765074;
  box-shadow: 0 12px 30px rgba(95, 29, 92, 0.08);
}

.process-list li + li {
  border-top-color: rgba(103, 31, 100, 0.14);
}

.ebook {
  color: white;
  background:
    radial-gradient(circle at 75% 30%, rgba(204, 140, 109, 0.22), transparent 30%),
    linear-gradient(135deg, #52276d, #714078 58%, #8c5373);
}

.ebook::before {
  background: radial-gradient(circle at 50% 50%, rgba(229, 187, 106, 0.16), transparent 66%);
}

.ebook .eyebrow,
.ebook-book span {
  color: #edcf87;
}

.ebook-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.ebook .button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.ebook .button-secondary:hover {
  background: #f3dda8;
  color: #58305f;
}

.ebook-shadow {
  background: rgba(35, 5, 47, 0.34);
}

.ebook-book {
  border-color: rgba(255, 255, 255, 0.38);
  background:
    radial-gradient(circle at 70% 17%, rgba(239, 207, 134, 0.28), transparent 32%),
    linear-gradient(145deg, #dcaa65, #c97f69 52%, #8f5776);
  box-shadow: -12px 12px 0 #be7b76, 0 34px 70px rgba(43, 24, 49, 0.27);
  color: white;
}

.ebook-book img {
  filter: brightness(0) invert(1);
}

.ebook-book i {
  background: rgba(255, 255, 255, 0.56);
}

.faq {
  background:
    radial-gradient(circle at 100% 100%, rgba(207, 151, 86, 0.13), transparent 31%),
    linear-gradient(180deg, #fdf9f6, #f3e9eb);
}

.faq::after {
  background: rgba(122, 76, 115, 0.1);
}

.accordion,
.accordion details {
  border-color: rgba(97, 27, 93, 0.17);
}

.accordion summary::before,
.accordion summary::after {
  background: #805277;
}

.contact {
  background:
    radial-gradient(circle at 8% 82%, rgba(216, 167, 87, 0.12), transparent 26%),
    #fdf9f6;
}

.contact-visual {
  border-color: rgba(102, 66, 100, 0.15);
  background: linear-gradient(160deg, rgba(113, 74, 109, 0.11), rgba(220, 172, 92, 0.17));
  box-shadow: 0 28px 80px rgba(74, 19, 79, 0.15);
}

.wash-contact {
  background: linear-gradient(145deg, rgba(111, 69, 108, 0.48), rgba(207, 139, 92, 0.2));
}

.contact-sprig {
  filter: sepia(0.28) hue-rotate(255deg) saturate(1.15);
  opacity: 0.55;
}

.contact-copy {
  border-color: rgba(102, 66, 100, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 235, 235, 0.92));
  box-shadow: 0 28px 80px rgba(74, 19, 79, 0.13);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  border-color: rgba(101, 28, 96, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #805477;
  box-shadow: 0 0 0 4px rgba(115, 77, 109, 0.1);
}

.consent input {
  accent-color: #765074;
}

.form-status {
  color: #704c6d !important;
}

.support-section {
  background: #fdf9f6;
}

.support-card {
  border-color: rgba(110, 30, 102, 0.16);
  background:
    radial-gradient(circle at 92% 20%, rgba(218, 171, 91, 0.2), transparent 24%),
    linear-gradient(125deg, #f3e7e7, #fcf6ef);
  box-shadow: 0 24px 70px rgba(76, 20, 80, 0.1);
}

.support-icon {
  border-color: rgba(110, 30, 102, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.support-icon svg {
  stroke: #805277;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(166, 103, 137, 0.2), transparent 30%),
    linear-gradient(145deg, #432250, #59305f 58%, #69405f);
}

.brand-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

@media (max-width: 780px) {
  .primary-navigation {
    background:
      radial-gradient(circle at 20% 85%, rgba(204, 139, 104, 0.22), transparent 32%),
      linear-gradient(160deg, #512668, #714078);
    color: white;
  }

  .primary-navigation > a:not(.nav-cta) {
    color: white;
  }

  .hero {
    min-height: 760px;
  }

  .hero-feather {
    display: block;
    width: min(64vw, 250px);
    margin: 0 auto 34px;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  }

  .hero-layout {
    display: block;
  }

  .hero-inner {
    margin-inline: auto;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-values {
    justify-content: center;
  }
}

@media (min-width: 781px) and (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.52fr);
    gap: 30px;
  }

  .hero-feather {
    width: min(100%, 270px);
    padding-right: 24px;
  }

  .hero-inner {
    margin: 0;
  }
}

/* The exact hand-drawn feather from the supplied brand artwork. */
.svg-definitions {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.brand-mark .feather-mark {
  width: 70px;
  height: auto;
  transform: none;
}

.brand-mark,
.site-header .brand-mark {
  width: 74px;
  height: 50px;
  flex-basis: 74px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.ebook-book .feather-mark {
  position: absolute;
  top: 42px;
  right: 38px;
  width: 76px;
  opacity: 0.78;
}

.brand-footer .brand-mark .feather-mark,
.ebook-book .feather-mark {
  filter: brightness(0) invert(1);
}

@media (max-width: 780px) {
  .brand-mark .feather-mark {
    width: 58px;
    height: auto;
  }

  .brand-mark,
  .site-header .brand-mark {
    width: 62px;
    height: 44px;
    flex-basis: 62px;
  }

}
