:root {
  --ink: #211d17;
  --muted: #76736d;
  --accent: #f5c928;
  --accent-hover: #e6b90e;
  --soft: #f6f5f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.arrow-icon {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}

.navbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 80px, 1440px);
  height: 88px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 13px;
  font-weight: 500;
}

.nav-links a {
  transition: opacity 180ms ease;
}

.nav-links a:hover {
  opacity: 0.55;
}

.brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-build-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.nav-cta span,
.nav-build-link span,
.button span {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transform: rotate(-2deg);
  transition: transform 180ms ease;
}

.nav-cta:hover span,
.nav-build-link:hover span,
.button:hover span {
  transform: translate(2px, -2px) rotate(-2deg);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  align-items: center;
  width: min(100% - 80px, 1440px);
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 10px 0 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

h1 {
  max-width: 750px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 5.45vw, 86px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

h1 em {
  color: #9a9790;
  font-weight: 400;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  gap: 10px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--accent);
}

.button-secondary {
  gap: 10px;
  background: var(--soft);
}

.button-secondary:hover {
  background: #eceae4;
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 470px;
}

.hero-art::before {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 201, 40, 0.14);
  filter: blur(45px);
  content: "";
}

.hero-art img {
  position: relative;
  width: min(92%, 560px);
  height: auto;
  mix-blend-mode: multiply;
  animation: drift 7s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.builders {
  height: 100vh;
  min-height: 700px;
  padding: 32px 0;
  background: #fff;
}

.builders-inner {
  display: flex;
  flex-direction: column;
  width: min(100% - 80px, 1440px);
  height: 100%;
  margin: 0 auto;
}

.section-kicker {
  flex: 0 0 auto;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px 0;
  background: var(--accent);
  content: "";
}

.builder-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 0;
}

.builder-photo-marea {
  grid-column: 1 / 4;
}

.builder-card-marea {
  grid-column: 4 / 11;
}

.builder-card-sara {
  grid-column: 1 / 8;
}

.builder-photo-sara {
  grid-column: 8 / 11;
}

.builder-photo,
.builder-card {
  min-height: 0;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}

.builder-photo {
  background: var(--soft);
}

.builder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: filter 400ms ease, transform 600ms ease;
}

.builder-photo:hover img {
  filter: saturate(1);
  transform: scale(1.018);
}

.builder-photo-marea img {
  object-position: center 24%;
}

.builder-photo-sara img {
  object-position: center 32%;
}

.builder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.2vw, 48px);
  background: var(--soft);
}

.builder-role {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-card h2 {
  max-width: 690px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.builder-card h2 em {
  color: var(--accent);
  font-weight: 400;
}

.builder-bio {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.52;
}

.builder-number {
  position: absolute;
  right: 22px;
  bottom: 15px;
  margin: 0;
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 32px;
}

.builder-card-sara {
  background: var(--soft);
}

.services {
  height: auto;
  min-height: 0;
  padding: 70px 0 0;
  overflow: visible;
  background: #fff;
}

.services-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 68px);
  width: min(100% - 80px, 1440px);
  height: auto;
  margin: 0 auto;
}

.services-heading {
  position: sticky;
  top: 86px;
  align-self: start;
  padding-top: 5px;
}

.services-heading .section-kicker {
  margin-bottom: 22px;
}

.services-heading h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  max-width: 470px;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.services-heading h2 em {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-weight: 400;
}

.services-intro {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.services-grid {
  display: block;
  justify-self: end;
  width: min(100%, 760px);
  min-height: 0;
  padding-bottom: 28vh;
}

.service-card {
  --stack-index: 0;
  --card-scale: 1;
  position: sticky;
  top: calc(82px + (var(--stack-index) * 20px));
  z-index: calc(10 + var(--stack-index));
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: clamp(340px, 45vh, 410px);
  min-height: 0;
  margin: 0 0 10vh;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid #e8e5dd;
  border-radius: 14px;
  overflow: hidden;
  opacity: 1;
  transform: scale(var(--card-scale));
  transform-origin: center top;
  box-shadow: 0 18px 50px rgba(33, 29, 23, 0.08);
  will-change: transform;
}

.service-card:nth-child(1) {
  --stack-index: 0;
}

.service-card:nth-child(2) {
  --stack-index: 1;
}

.service-card:nth-child(3) {
  --stack-index: 2;
}

.service-card:nth-child(4) {
  --stack-index: 3;
  margin-bottom: 0;
}

.service-light {
  border-color: var(--accent);
  background-color: var(--soft);
  background-image: url("assests/Yellow card.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-yellow {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("assests/Yellow card.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(18px, 2.5vh, 25px);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(33, 29, 23, 0.14);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-meta span:last-child {
  text-align: right;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(31px, 2.7vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-card h3 em {
  color: #9a9790;
  font-weight: 400;
}

.service-yellow h3 em {
  color: rgba(33, 29, 23, 0.55);
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
}

.service-yellow > p {
  color: rgba(33, 29, 23, 0.7);
}

.service-mark {
  position: absolute;
  right: 24px;
  bottom: -18px;
  color: rgba(33, 29, 23, 0.22);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 104px;
  line-height: 1;
}

.service-yellow .service-mark {
  color: rgba(33, 29, 23, 0.22);
}

.playbook {
  height: auto;
  min-height: 0;
  padding: 38px 0 32px;
  overflow: hidden;
  background: #fff;
}

.playbook-inner {
  display: flex;
  flex-direction: column;
  width: min(100% - 80px, 1440px);
  height: auto;
  margin: 0 auto;
}

.playbook-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 24px;
}

.playbook-heading .section-kicker {
  margin-bottom: 12px;
}

.playbook-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.playbook-heading h2 em {
  color: var(--accent);
  font-weight: 400;
}

.playbook-intro {
  display: flex;
  justify-content: flex-end;
}

.playbook-controls {
  display: flex;
  gap: 10px;
}

.playbook-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd9d0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.playbook-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.playbook-controls button:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.playbook-swiper {
  flex: 0 0 auto;
  width: 100%;
  height: 360px;
  min-height: 0;
  padding-bottom: 26px;
}

.playbook-swiper .swiper-wrapper {
  align-items: flex-start;
}

.playbook-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: min(330px, calc(100% - 8px));
  padding: 24px;
  border: 1px solid #e9e6df;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8f7f3 0%, #f1efe8 100%);
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.playbook-card::after {
  position: absolute;
  right: -26px;
  bottom: -38px;
  width: 180px;
  height: 180px;
  background-image: url("assests/process-sun.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.16;
  transform: rotate(-8deg) scale(0.92);
  transition: filter 420ms ease, opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.playbook-card.swiper-slide-active {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-4px);
}

.playbook-card.swiper-slide-active::after {
  filter: grayscale(0) brightness(1.12) saturate(1.18) drop-shadow(0 0 18px rgba(255, 232, 118, 0.8));
  opacity: 0.96;
  transform: rotate(0) scale(1);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-line {
  width: 100%;
  height: 1px;
  background: #d8d4cb;
}

.playbook-card.swiper-slide-active .step-line {
  background: rgba(33, 29, 23, 0.3);
}

.playbook-card h3 {
  position: relative;
  z-index: 1;
  min-height: 2.15em;
  margin: 15px 0 6px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.playbook-card > p {
  position: relative;
  z-index: 1;
  min-height: 3.8em;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.playbook-card.swiper-slide-active > p {
  color: rgba(33, 29, 23, 0.72);
}

.playbook-swiper .swiper-scrollbar {
  bottom: 2px;
  height: 2px;
  background: #e6e3dc;
}

.playbook-swiper .swiper-scrollbar-drag {
  background: var(--accent);
}

.testimonials {
  height: auto;
  min-height: 0;
  padding: 20px 0 16px;
  overflow: hidden;
  background: #fff;
}

.testimonials-inner {
  display: flex;
  flex-direction: column;
  width: min(100% - 80px, 1300px);
  height: auto;
  margin: 0 auto;
}

.testimonials-inner > .section-kicker {
  margin-bottom: 18px;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  height: 380px;
  min-height: 0;
  flex: 0 0 auto;
}

.testimonial-main-photo {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.testimonial-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: opacity 180ms ease, transform 420ms ease;
}

.testimonial-main-photo:hover img {
  transform: scale(1.015);
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 380px;
  max-width: 700px;
  padding: 20px;
  border: 2px solid rgba(245, 201, 40, 0.65);
  border-radius: 12px;
  background: #fffbee;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}

.testimonial-rating span {
  font-size: 19px;
  letter-spacing: 0.12em;
}

.testimonial-rating small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.testimonial-copy blockquote {
  display: flex;
  align-items: flex-start;
  min-height: 4.32em;
  margin: 22px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 3vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.quote-rule {
  width: 54px;
  height: 2px;
  margin: 25px 0 15px;
  background: var(--accent);
}

#testimonial-name {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

#testimonial-role {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.testimonial-next {
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.testimonial-next svg {
  width: 34px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.testimonial-next:hover {
  background: transparent;
  color: var(--accent-hover);
  transform: translateX(3px);
}

.testimonial-swiper {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.testimonial-swiper:active {
  cursor: grabbing;
}

.testimonial-thumb {
  position: relative;
  height: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: border-color 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.testimonial-thumb:hover,
.testimonial-thumb.is-selected {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-3px);
}

.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-thumb span {
  position: absolute;
  left: 8px;
  bottom: 7px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
}

.testimonial-swiper .swiper-scrollbar {
  display: none;
}

.testimonial-swiper .swiper-scrollbar-drag {
  background: var(--accent);
}

.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 8vw, 130px);
  width: min(100% - 80px, 1300px);
  margin: 0 auto;
}

.contact-details h2 {
  max-width: 540px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.contact-details h2 em {
  display: block;
  color: var(--accent);
  font-weight: 400;
}

.contact-intro {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-email {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 38px;
}

.contact-email span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email a {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-socials a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.contact-socials svg,
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-socials .icon-fill,
.footer-socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: var(--soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 15px;
}

.contact-form select {
  appearance: none;
  accent-color: var(--accent);
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6b90e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
}

.contact-form select option {
  background: #fff;
  color: var(--ink);
}

.contact-form select option:checked,
.contact-form select option:hover,
.contact-form select option:focus {
  background-color: var(--accent) !important;
  background-image: linear-gradient(var(--accent), var(--accent)) !important;
  color: var(--ink) !important;
  box-shadow: 0 0 0 100px var(--accent) inset;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 201, 40, 0.16);
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.form-status.is-success {
  color: #507229;
}

.form-status.is-error {
  color: #a33a2b;
}

.site-footer {
  padding: 60px 40px 20px;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 1.15fr 0.65fr;
  gap: clamp(35px, 6vw, 90px);
  width: min(100%, 1440px);
  margin: 0 auto;
}

.footer-note p {
  max-width: 430px;
  margin: 0 0 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
}

.footer-note > .footer-logo {
  display: inline-block;
  margin: 0 0 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 58px;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.footer-note > a {
  font-size: 14px;
  font-weight: 600;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column > p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 13px;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-socials > div {
  display: flex;
  gap: 9px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(33, 29, 23, 0.3);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  opacity: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  background: #ffdc47;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: min(100%, 1440px);
  margin: 70px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(33, 29, 23, 0.25);
  font-size: 11px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(33, 29, 23, 0.2);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(33, 29, 23, 0.12);
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.faq-page {
  background: #fff;
}

.faq-navbar {
  position: relative;
}

.faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 72px max(40px, calc((100vw - 1440px) / 2)) 78px;
  overflow: hidden;
  background: #fff;
}

.faq-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.faq-hero h1 {
  max-width: 830px;
  font-size: clamp(68px, 7vw, 108px);
}

.faq-hero h1 em {
  color: var(--accent);
}

.faq-hero-copy > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-sun {
  position: absolute;
  top: -25px;
  right: -125px;
  width: min(42vw, 570px);
  height: auto;
  mix-blend-mode: multiply;
  transform: rotate(9deg);
}

.faq-content {
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  padding: 48px 0 80px;
}

.faq-group {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: clamp(35px, 7vw, 100px);
  padding: 60px 0;
  border-top: 1px solid #ddd9d0;
  scroll-margin-top: 40px;
}

.faq-group-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.faq-group-heading span {
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 600;
}

.faq-group-heading h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.faq-list {
  border-bottom: 1px solid #ddd9d0;
}

.faq-item {
  border-top: 1px solid #ddd9d0;
  transition: background 220ms ease;
}

.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  min-height: 78px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
}

.faq-item i {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-item i::before,
.faq-item i::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--accent-hover);
  content: "";
  transition: transform 220ms ease, background 220ms ease;
}

.faq-item i::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.faq-answer p {
  max-width: 720px;
  min-height: 0;
  margin: 0;
  padding: 0 70px 0 22px;
  overflow: hidden;
  color: rgba(33, 29, 23, 0.72);
  font-size: 14px;
  line-height: 1.65;
  transition: padding 320ms ease;
}

.faq-item.is-open {
  background: var(--accent);
}

.faq-item.is-open i::before,
.faq-item.is-open i::after {
  background: var(--ink);
}

.faq-item.is-open i::after {
  transform: rotate(0);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.faq-cta {
  margin-top: 70px;
  padding: clamp(45px, 7vw, 90px);
  border-radius: 12px;
  background: var(--accent);
  text-align: center;
}

.faq-cta > p {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-cta h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.faq-cta h2 em {
  color: rgba(33, 29, 23, 0.55);
  font-weight: 400;
}

.faq-cta a {
  display: inline-flex;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1050px) {
  .navbar,
  .hero-content {
    width: min(100% - 48px, 1440px);
  }

  .nav-links {
    gap: 16px;
    font-size: 12px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-build-link {
    display: none;
  }

  .hero-content {
    grid-template-columns: 58% 42%;
  }

  .builders-inner {
    width: min(100% - 48px, 1440px);
  }

  .playbook-inner {
    width: min(100% - 48px, 1440px);
  }

  .services-inner {
    width: min(100% - 48px, 1440px);
    grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  }

  .testimonials-inner {
    width: min(100% - 48px, 1300px);
  }

  .contact-inner {
    width: min(100% - 48px, 1300px);
  }

  .testimonial-feature {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
  }

  .testimonial-copy blockquote {
    font-size: clamp(30px, 3.6vw, 42px);
  }

  .footer-top {
    grid-template-columns: 1.25fr 0.75fr 1fr 0.55fr;
    gap: 34px;
  }

  .faq-hero {
    padding-inline: 24px;
  }

  .faq-content {
    width: min(100% - 48px, 1180px);
  }

}

@media (max-width: 780px) {
  .navbar {
    grid-template-columns: 1fr auto 1fr;
    width: calc(100% - 36px);
    height: 74px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 34px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 24px;
    border: 1px solid #ebe9e2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(33, 29, 23, 0.1);
    font-size: 15px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    padding: 11px 15px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 36px);
    min-height: auto;
    padding: 62px 0 60px;
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    font-size: clamp(52px, 14vw, 74px);
  }

  .hero-copy p {
    margin-inline: auto;
  }

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

  .hero-art {
    order: -1;
    min-height: 0;
    margin-bottom: 30px;
  }

  .hero-art img {
    width: min(68vw, 330px);
  }

  .builders {
    height: auto;
    min-height: 0;
    padding: 82px 0;
  }

  .builders-inner {
    width: calc(100% - 36px);
  }

  .builder-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .builder-photo-marea,
  .builder-card-marea,
  .builder-card-sara,
  .builder-photo-sara {
    grid-column: auto;
  }

  .builder-photo,
  .builder-card {
    min-height: auto;
  }

  .builder-photo {
    aspect-ratio: 4 / 4.5;
  }

  .builder-card {
    padding: 48px 28px 70px;
  }

  .builder-card-sara {
    order: 4;
  }

  .builder-photo-sara {
    order: 3;
    margin-top: 24px;
  }

  .playbook {
    height: auto;
    min-height: 0;
    padding: 58px 0 24px;
  }

  .services {
    height: auto;
    min-height: 0;
    padding: 72px 0 0;
    overflow: visible;
  }

  .services-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .services-heading {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }

  .services-grid {
    display: block;
    justify-self: stretch;
    width: 100%;
    padding-bottom: 20vh;
  }

  .service-card {
    top: calc(72px + (var(--stack-index) * 16px));
    height: clamp(390px, 58svh, 480px);
    min-height: 0;
    margin-bottom: 10vh;
    padding: 30px 26px;
  }

  .playbook-inner {
    width: calc(100% - 36px);
  }

  .playbook-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .playbook-intro {
    justify-content: flex-start;
  }

  .playbook-swiper {
    height: 354px;
    min-height: 0;
  }

  .playbook-card {
    height: 330px;
  }

  .testimonials {
    height: auto;
    min-height: 0;
    padding: 52px 0 24px;
  }

  .contact {
    padding: 82px 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    width: calc(100% - 36px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 48px 18px 18px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 26px;
  }

  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-faqs {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 50px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .testimonials-inner {
    width: calc(100% - 36px);
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
  }

  .testimonial-main-photo {
    height: min(82vw, 390px);
  }

  .testimonial-copy {
    height: auto;
    min-height: 390px;
  }

  .testimonial-copy blockquote {
    min-height: 0;
    font-size: clamp(32px, 9vw, 44px);
  }

  .testimonial-swiper {
    margin-top: 40px;
  }

  .faq-hero {
    min-height: 0;
    padding: 64px 18px 58px;
  }

  .faq-hero h1 {
    max-width: 90%;
    font-size: clamp(58px, 16vw, 78px);
  }

  .faq-sun {
    top: -5px;
    right: -100px;
    width: 270px;
    opacity: 0.72;
  }

  .faq-content {
    width: calc(100% - 36px);
    padding: 28px 0 60px;
  }

  .faq-group {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0;
  }

  .faq-item > button {
    min-height: 70px;
    padding-inline: 16px;
  }

  .faq-answer p {
    padding-inline: 16px 54px;
  }
}

@media (max-width: 560px) {
  .navbar {
    width: calc(100% - 28px);
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero-content,
  .builders-inner,
  .services-inner,
  .playbook-inner,
  .testimonials-inner,
  .contact-inner {
    width: calc(100% - 28px);
  }

  .hero-actions {
    width: 100%;
  }

  .builder-card h2,
  .services-heading h2,
  .playbook-heading h2,
  .contact-details h2 {
    overflow-wrap: anywhere;
  }

  .service-card {
    top: calc(68px + (var(--stack-index) * 13px));
    height: clamp(380px, 62svh, 460px);
    padding: 25px 22px;
  }

  .service-card h3 {
    font-size: 31px;
  }

  .playbook-card {
    height: 330px;
  }

  .testimonial-main-photo {
    height: 340px;
  }

  .testimonial-copy {
    min-height: 0;
    padding: 18px;
  }

  .testimonial-copy blockquote {
    font-size: 30px;
  }

  .contact-socials {
    margin-top: 20px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-note,
  .footer-faqs {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .faq-hero {
    padding-top: 52px;
  }

  .faq-hero h1 {
    max-width: 100%;
    font-size: clamp(50px, 15vw, 68px);
  }

  .faq-hero-copy > p:last-child {
    font-size: 15px;
  }

  .faq-sun {
    right: -125px;
    width: 245px;
  }

  .faq-content {
    width: calc(100% - 28px);
  }

  .faq-item > button {
    gap: 16px;
    padding-inline: 13px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 26px;
  }

  .nav-cta {
    font-size: 12px;
  }

  .hero-content {
    padding-top: 40px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art img { animation: none; }
  .service-card {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}
