:root {
  --petrol: #1a4d5c;
  --petrol-dark: #0e3a45;
  --petrol-light: #2a6b7a;
  --sage: #87a96b;
  --sage-light: #9cb886;
  --cream: #f5f0e6;
  --porcelain: #faf8f3;
  --linen: #ebe5db;
  --stone: #d4cfc4;
  --copper: #c48a3c;
  --ink: #1a1d16;
  --muted: #5a5e52;
  --white: #ffffff;
  --line: rgba(26, 77, 92, .16);
  --shadow: 0 24px 70px rgba(26, 77, 92, .18);
  --soft-shadow: 0 16px 42px rgba(26, 77, 92, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--cream);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-width: 320px;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, .98), rgba(247, 241, 232, .96) 42%, rgba(255, 250, 243, 1)),
    var(--cream);
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--petrol);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  border-radius: 999px;
  background: var(--petrol);
  transform: translateY(-140%);
  transition: transform .25s ease;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  max-width: 100%;
  overflow-x: hidden;
}

.section {
  padding: clamp(70px, 8vw, 118px) 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.service-card,
.book-card,
.testimonial-card,
.faq-item {
  max-width: 100%;
  overflow: hidden;
}

.about-grid,
.method-grid,
.location-grid,
.cta-grid,
.books-grid,
.help-grid,
.highlights-grid {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::after,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.section-head {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-head .section-kicker {
  justify-content: center;
}

.section-head h2,
.about-copy h2,
.method-copy h2,
.faq-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p,
.method-copy p,
.faq-copy p,
.cta-copy p {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform .32s var(--ease),
    box-shadow .32s var(--ease),
    background .32s var(--ease),
    color .32s var(--ease),
    border-color .32s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--petrol), var(--petrol-dark));
  box-shadow: 0 18px 40px rgba(26, 77, 92, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(26, 77, 92, .34);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.btn-light:hover,
.btn-light:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .16);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .14);
}

.btn-outline {
  color: var(--petrol);
  border-color: var(--petrol);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-3px);
  background: var(--petrol);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 77, 92, .12);
  background: rgba(255, 250, 243, .88);
  box-shadow: 0 12px 36px rgba(26, 77, 92, .08);
  backdrop-filter: blur(18px);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled,
.site-header.open {
  border-color: rgba(26, 77, 92, .18);
  background: rgba(255, 250, 243, .96);
  box-shadow: 0 18px 48px rgba(26, 77, 92, .12);
}

.header-inner {
  width: min(1280px, calc(100% - 64px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--petrol);
  border: 1px solid rgba(26, 77, 92, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.55;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-copy span {
  color: rgba(21, 23, 17, .7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(21, 23, 17, .84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--copper);
  transition: right .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 48px;
  padding-inline: 20px;
}

.menu-button {
  width: 52px;
  height: 52px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.2;
}

.mobile-menu {
  position: fixed;
  top: 112px;
  left: 20px;
  right: 20px;
  z-index: 999;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(26, 77, 92, .15);
  border-radius: 18px;
  background: rgba(255, 250, 243, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(26, 77, 92, .08);
}

.mobile-menu svg {
  width: 18px;
  height: 18px;
  color: var(--petrol);
}

.hero {
  position: relative;
  min-height: 724px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: var(--petrol-3);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 30, 38, .88) 0%, rgba(26, 77, 92, .68) 29%, rgba(26, 77, 92, .28) 58%, rgba(10, 30, 38, .1) 100%),
    linear-gradient(180deg, rgba(10, 30, 38, .24), rgba(10, 30, 38, .2) 62%, rgba(10, 30, 38, .48));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(25, 35, 22, .42));
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 132px 0 54px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 6.4vw, 84px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trust-band {
  position: relative;
  z-index: 2;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(25, 35, 22, .98), rgba(26, 77, 92, .98) 56%, rgba(42, 107, 122, .98));
}

.trust-grid {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.trust-item {
  min-height: 222px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 32px 28px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.trust-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}

.trust-item h2 {
  max-width: 180px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.32;
  text-transform: uppercase;
}

.trust-item p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.62;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, .98), rgba(247, 241, 232, .82)),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.about-copy h2 {
  max-width: 560px;
  font-size: clamp(44px, 5vw, 66px);
}

.title-line {
  width: 64px;
  height: 2px;
  display: block;
  margin: 24px 0;
  background: var(--copper);
}

.about-copy p {
  max-width: 560px;
  margin: 0 0 16px;
  color: #34372f;
  font-size: 17px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.credential {
  color: var(--petrol);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 34px 0 34px;
  box-shadow: var(--shadow);
  background: var(--linen);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 66% center;
}

.photo-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 48px);
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  background: rgba(255, 250, 243, .86);
  box-shadow: 0 14px 34px rgba(26, 77, 92, .16);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
}

.photo-badge svg {
  width: 20px;
  height: 20px;
  color: var(--petrol);
}

.services-section {
  background: var(--porcelain);
}

.service-shell {
  position: relative;
}

.service-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 500px;
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid rgba(26, 77, 92, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 48px rgba(26, 77, 92, .08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 77, 92, .26);
  box-shadow: 0 28px 72px rgba(26, 77, 92, .14);
}

.service-image {
  overflow: hidden;
  background: var(--linen);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.03);
}

.service-card:nth-child(1) .service-image img { object-position: 68% 44%; }
.service-card:nth-child(2) .service-image img { object-position: 26% 48%; }
.service-card:nth-child(3) .service-image img { object-position: 74% 40%; }
.service-card:nth-child(4) .service-image img { object-position: 50% 58%; }

.service-body {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px 26px 74px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  border-radius: 50%;
  background: var(--cream);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.service-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.service-body p {
  margin: 0;
  color: #4d5148;
  font-size: 15px;
}

.service-body a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  border: 1px solid rgba(26, 77, 92, .35);
  border-radius: 50%;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.service-body a:hover,
.service-body a:focus-visible {
  color: var(--white);
  background: var(--petrol);
  transform: translateX(3px);
}

.service-body a svg {
  width: 22px;
  height: 22px;
}

.service-dots {
  display: none;
}

.method-section {
  padding: clamp(76px, 9vw, 124px) 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(25, 35, 22, .96), rgba(26, 77, 92, .98)),
    var(--petrol);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.method-copy .section-kicker,
.cta-copy .section-kicker {
  color: #d3a15f;
}

.method-copy .section-kicker::after,
.cta-copy .section-kicker::after {
  background: currentColor;
}

.method-copy h2 {
  max-width: 620px;
  color: var(--white);
}

.method-copy p {
  margin-inline: 0;
  color: rgba(255, 255, 255, .75);
}

.method-copy .btn {
  margin-top: 30px;
}

.location-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.location-copy {
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.location-copy h2 {
  max-width: 620px;
  color: var(--petrol);
  margin-bottom: 16px;
}

.location-copy p {
  margin-inline: 0;
  color: var(--muted);
  line-height: 1.6;
}

.location-copy .btn {
  margin-top: 24px;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.books-section {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--porcelain);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.book-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s var(--ease);
}

.book-card:hover {
  transform: translateY(-4px);
}

.book-image {
  aspect-ratio: 2/3;
  max-height: 280px;
  overflow: hidden;
  background: var(--linen);
}

.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.book-card:hover .book-image img {
  transform: scale(1.05);
}

.book-content {
  padding: 20px;
}

.book-content h3 {
  color: var(--petrol);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.book-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-modal-btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  font-size: 11px;
}

.book-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 77, 92, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.book-modal.active {
  display: flex;
}

.book-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.book-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--linen);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}

.book-modal-close:hover {
  background: var(--stone);
}

.book-modal-content h3 {
  color: var(--petrol);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.book-modal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.timeline article span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  border-radius: 50%;
  background: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.timeline h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 1), rgba(247, 241, 232, .96));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(26, 77, 92, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--soft-shadow);
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--copper);
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin: 0;
  color: #34372f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--petrol);
}

.testimonial-card footer span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-weight: 800;
}

.testimonial-card footer strong {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-section {
  padding: clamp(70px, 8vw, 116px) 0;
  background: var(--porcelain);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.faq-copy h2 {
  max-width: 540px;
  font-size: clamp(42px, 5.6vw, 66px);
}

.faq-copy p {
  margin-inline: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(26, 77, 92, .14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 16px;
  font-weight: 800;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  color: var(--petrol);
  flex: 0 0 auto;
  transition: transform .25s var(--ease);
}

.faq-item.open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(76px, 9vw, 124px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 35, 22, .92), rgba(26, 77, 92, .76)),
    url("../images/suedem.png") center / cover no-repeat;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.cta-copy h2 {
  max-width: 700px;
  color: var(--white);
}

.cta-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
}

.cta-copy .btn {
  margin-top: 32px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contact-card a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.contact-card a[href*="instagram"],
.contact-card a[href*="twitter"],
.contact-card a[href*="facebook"],
.contact-card a[href*="blogspot"] {
  background: rgba(212, 129, 95, .15);
  border: 1px solid rgba(212, 129, 95, .3);
}

.contact-card a[href*="instagram"]:hover,
.contact-card a[href*="twitter"]:hover,
.contact-card a[href*="facebook"]:hover,
.contact-card a[href*="blogspot"]:hover {
  background: rgba(212, 129, 95, .25);
  border-color: rgba(212, 129, 95, .5);
}

.contact-card svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #d3a15f;
}

.contact-card a svg {
  width: 24px;
  height: 24px;
  color: var(--copper);
}

.contact-card span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer {
  padding: 28px 0;
  color: #55584f;
  background: var(--porcelain);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(26, 77, 92, .13);
  padding-top: 24px;
}

.footer .brand-mark {
  width: 42px;
  height: 42px;
}

.footer .brand-copy strong {
  font-size: 20px;
}

.footer .brand-copy span {
  font-size: 10px;
}

.footer p {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid rgba(255, 250, 243, .88);
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 18px 48px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: transform .25s var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  stroke-width: 2;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 112px;
  }

  section[id] {
    scroll-margin-top: 126px;
  }

  .header-inner {
    width: min(100% - 28px, 820px);
    min-height: 112px;
    gap: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header-cta {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 11px;
    box-shadow: 0 16px 34px rgba(26, 77, 92, .24);
  }

  .header-cta span {
    display: inline;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: clamp(22px, 4.3vw, 31px);
    line-height: .92;
  }

  .brand-copy span {
    font-size: 11px;
    letter-spacing: .28em;
  }

  .hero {
    min-height: 730px;
    align-items: start;
  }

  .hero-media img {
    object-position: center 25%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 30, 38, .86) 0%, rgba(26, 77, 92, .62) 42%, rgba(26, 77, 92, .18) 76%),
      linear-gradient(180deg, rgba(10, 30, 38, .2), rgba(10, 30, 38, .36) 72%, rgba(10, 30, 38, .58));
  }

  .hero-content {
    width: min(100% - 44px, 760px);
    padding: 178px 0 120px;
  }

  .hero-copy {
    max-width: 480px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 10.4vw, 66px);
  }

  .hero-copy p {
    max-width: 360px;
    font-size: 18px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    width: min(360px, 100%);
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .btn {
    min-height: 58px;
  }

  .trust-band {
    color: var(--ink);
    background: transparent;
    margin-top: -68px;
    padding: 0 0 48px;
  }

  .trust-grid {
    width: min(100% - 34px, 760px);
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    overflow-x: auto;
    padding: 24px 20px;
    border: 1px solid rgba(26, 77, 92, .12);
    border-radius: 26px;
    background: rgba(255, 250, 243, .94);
    box-shadow: var(--shadow);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    min-height: 142px;
    padding: 0 14px;
    scroll-snap-align: center;
  }

  .trust-item + .trust-item {
    border-left: 1px solid rgba(26, 77, 92, .13);
  }

  .trust-icon {
    width: 66px;
    height: 66px;
    color: var(--petrol);
    border-radius: 22px;
    background: var(--cream);
  }

  .trust-item h2 {
    max-width: 126px;
    color: var(--ink);
    font-size: 13px;
  }

  .trust-item p {
    display: none;
  }

  .about-grid,
  .method-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding-top: 32px;
  }

  .about-photo {
    min-height: 520px;
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .about-photo img {
    min-height: 520px;
  }

  .method-grid,
  .faq-grid {
    gap: 34px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .footer p {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 34px, 520px);
  }

  .section {
    padding: 62px 0;
  }

  .books-section {
    padding: 46px 0;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .book-image {
    max-height: 220px;
  }

  .book-content {
    padding: 16px;
  }

  .book-content h3 {
    font-size: 1rem;
  }

  .book-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-copy {
    padding: 24px;
  }

  .location-map {
    min-height: 300px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .about-copy h2,
  .method-copy h2,
  .faq-copy h2,
  .cta-copy h2 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .section-head p {
    font-size: 16px;
  }

  .site-header {
    border-bottom: 0;
    border-radius: 0 0 24px 24px;
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 12px;
    min-height: 104px;
  }

  .mobile-menu {
    top: 104px;
    left: 16px;
    right: 16px;
    padding: 12px;
  }

  .mobile-menu a {
    min-height: 48px;
    font-size: 12px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-copy {
    min-width: 0;
  }

  .site-header .brand-copy strong {
    display: block;
    max-width: 200px;
    font-size: 18px;
    white-space: nowrap;
  }

  .site-header .brand-copy span {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-width: 114px;
    min-height: 58px;
    padding-inline: 14px;
  }

  .header-cta span {
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-button {
    width: 46px;
    height: 50px;
  }

  .mobile-menu {
    top: 122px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: center 30%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 30, 38, .9), rgba(26, 77, 92, .58) 48%, rgba(26, 77, 92, .12) 100%),
      linear-gradient(180deg, rgba(10, 30, 38, .08), rgba(10, 30, 38, .46) 74%, rgba(10, 30, 38, .66));
  }

  .hero-content {
    width: calc(100% - 44px);
    padding-top: 176px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .hero-copy h1 {
    max-width: 342px;
    font-size: clamp(43px, 12vw, 56px);
  }

  .hero-copy p {
    max-width: 318px;
    font-size: 17px;
  }

  .trust-grid {
    width: calc(100% - 34px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: start;
    overflow: visible;
    padding: 22px 12px;
    scroll-snap-type: none;
  }

  .trust-item {
    min-height: 132px;
    padding-inline: 6px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .trust-item h2 {
    max-width: 82px;
    font-size: 10px;
    letter-spacing: .06em;
  }

  .about-grid {
    gap: 36px;
  }

  .about-photo {
    min-height: 430px;
    border-radius: 0 26px 0 26px;
  }

  .about-photo img {
    min-height: 430px;
    object-position: 69% center;
  }

  .photo-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    border-radius: 18px;
  }

  .service-shell {
    width: calc(100% + 34px);
    margin-left: -17px;
  }

  .service-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 17px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-track::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: min(86vw, 380px);
    min-height: 334px;
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr;
    border-radius: 26px;
    scroll-snap-align: center;
  }

  .service-image {
    min-height: 334px;
  }

  .service-card:nth-child(1) .service-image img { object-position: 70% center; }
  .service-card:nth-child(2) .service-image img { object-position: 24% center; }
  .service-card:nth-child(3) .service-image img { object-position: 76% center; }
  .service-card:nth-child(4) .service-image img { object-position: 44% center; }

  .service-body {
    padding: 28px 22px 76px;
    gap: 12px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-body h3 {
    font-size: 30px;
  }

  .service-body p {
    font-size: 15px;
    line-height: 1.55;
  }

  .service-body a {
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
  }

  .service-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .service-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(26, 77, 92, .22);
    cursor: pointer;
  }

  .service-dots button.active {
    background: var(--petrol);
  }

  .method-section,
  .faq-section,
  .final-cta {
    padding: 66px 0;
  }

  .timeline article {
    padding: 20px;
  }

  .timeline h3 {
    font-size: 26px;
  }

  .testimonial-card {
    min-height: 240px;
    padding: 26px;
  }

  .testimonial-card blockquote {
    font-size: 26px;
  }

  .contact-card {
    padding: 24px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .books-section {
    padding: 36px 0;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
  }

  .book-image {
    max-height: 180px;
  }

  .book-content {
    padding: 14px;
  }

  .book-content h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .book-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }

  .book-modal-btn {
    min-height: 40px;
    font-size: 10px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-copy {
    padding: 20px;
  }

  .location-copy h2 {
    font-size: 1.5rem;
  }

  .location-copy p {
    font-size: 0.9rem;
  }

  .location-map {
    min-height: 250px;
    border-radius: 16px;
  }

  .header-cta {
    width: auto;
    min-height: 44px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .header-cta span {
    max-width: 66px;
  }

  .header-inner {
    min-height: 96px;
    gap: 8px;
  }

  .mobile-menu {
    top: 96px;
    left: 12px;
    right: 12px;
    padding: 10px;
    gap: 4px;
  }

  .mobile-menu a {
    min-height: 44px;
    font-size: 11px;
    padding: 0 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-copy strong {
    max-width: 180px;
    font-size: 16px;
  }

  .site-header .brand-copy span {
    font-size: 9px;
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-copy h1 {
    max-width: 300px;
    font-size: 44px;
  }

  .hero-copy p {
    max-width: 280px;
    font-size: 16px;
  }

  .service-card {
    min-width: 88vw;
    grid-template-columns: 40% 1fr;
  }

  .service-body {
    padding: 24px 18px 74px;
  }

  .service-body h3 {
    font-size: 27px;
  }

  .service-body p {
    font-size: 14px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .credential {
    text-align: center;
  }
}

/* Compact refinement requested for notebook and mobile */
.header-inner {
  min-height: 76px;
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-copy strong {
  font-size: 22px;
}

.brand-copy span {
  font-size: 10px;
}

.header-cta {
  min-height: 44px;
}

.hero {
  min-height: 540px;
}

.hero-content {
  padding: 112px 0 38px;
}

.hero-copy {
  max-width: 610px;
}

.hero-copy h1 {
  max-width: 600px;
  font-size: clamp(48px, 5.4vw, 70px);
}

.hero-copy p {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 18px);
}

.hero-actions {
  margin-top: 26px;
}

.hero-actions .btn {
  min-height: 46px;
}

.trust-item {
  min-height: 156px;
  padding: 24px 22px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-item p {
  font-size: 12px;
  line-height: 1.45;
}

.about-section {
  padding: clamp(48px, 5.5vw, 78px) 0;
}

.about-grid {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.about-photo {
  order: 1;
  min-height: 430px;
}

.about-photo img {
  min-height: 430px;
}

.about-copy {
  order: 2;
}

.about-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.about-copy p {
  font-size: 16px;
  line-height: 1.6;
}

.services-section {
  padding-top: clamp(50px, 6vw, 82px);
}

.services-section .section-head,
.testimonials-section .section-head {
  margin-bottom: 30px;
}

.services-section .section-head h2,
.testimonials-section .section-head h2 {
  font-size: clamp(42px, 4.8vw, 58px);
}

.service-track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 252px;
  grid-template-columns: 42% 1fr;
  grid-template-rows: 1fr;
  border-radius: 14px;
}

.service-image {
  min-height: 252px;
}

.service-body {
  padding: 20px 22px 58px;
}

.service-body h3 {
  font-size: 27px;
}

.service-body p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.service-body a {
  width: 42px;
  height: 42px;
}

.method-section {
  padding: clamp(52px, 6vw, 78px) 0;
}

.method-grid {
  grid-template-columns: minmax(0, .78fr) minmax(430px, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.method-copy h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.method-copy p {
  font-size: 16px;
}

.method-copy .btn {
  min-height: 46px;
  margin-top: 24px;
}

.mind-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mind-center,
.mind-node {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.mind-center {
  grid-column: 1 / -1;
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 20px 24px;
}

.mind-center svg {
  width: 42px;
  height: 42px;
  color: #d3a15f;
}

.mind-center strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: .95;
}

.mind-center span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mind-node {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.mind-node span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  border-radius: 50%;
  background: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.mind-node h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: .95;
}

.mind-node p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.45;
}

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

.testimonial-card {
  min-height: 190px;
  padding: 26px;
}

.testimonial-card blockquote {
  font-size: 24px;
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 1), rgba(242, 233, 221, .94));
}

.faq-grid {
  grid-template-columns: minmax(0, .72fr) minmax(500px, 1fr);
}

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

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 44px rgba(26, 77, 92, .08);
}

.faq-item button {
  min-height: 76px;
  padding: 0 18px;
}

.faq-item button span {
  font-size: 15px;
  line-height: 1.25;
}

.faq-answer p {
  padding: 0 18px 20px;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 505px;
  }

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

  .hero-copy h1 {
    font-size: clamp(44px, 5.2vw, 62px);
  }

  .about-grid {
    grid-template-columns: minmax(310px, .86fr) minmax(0, 1fr);
  }

  .method-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 92px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .header-cta {
    min-height: 50px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 34px, 760px);
    padding: 126px 0 72px;
  }

  .hero-copy {
    max-width: 390px;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(38px, 8.7vw, 52px);
  }

  .hero-copy p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    width: min(330px, 100%);
    margin-top: 22px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .trust-band {
    margin-top: -46px;
    padding-bottom: 36px;
  }

  .trust-grid {
    min-height: 126px;
    padding: 18px 12px;
  }

  .about-grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 22px;
  }

  .about-photo {
    order: 1;
    min-height: 380px;
  }

  .about-photo img {
    min-height: 380px;
  }

  .about-copy {
    order: 2;
  }

  .about-copy h2 {
    font-size: clamp(30px, 6vw, 44px);
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.48;
  }

  .about-actions {
    margin-top: 20px;
  }

  .about-actions .btn {
    width: auto;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 10px;
  }

  .credential {
    text-align: left;
  }

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

  .service-card {
    min-height: 290px;
  }

  .service-image {
    min-height: 290px;
  }

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

@media (max-width: 700px) {
  .section {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head .section-kicker {
    margin-bottom: 10px;
  }

  .section-head h2 {
    font-size: clamp(32px, 8.6vw, 40px);
    line-height: .98;
  }

  .section-head p {
    max-width: 330px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.48;
  }

  section[id] {
    scroll-margin-top: 104px;
  }

  .header-inner {
    min-height: 88px;
    width: calc(100% - 18px);
  }

  .site-header .brand-copy strong {
    max-width: 140px;
    font-size: 14px;
  }

  .site-header .brand-copy span {
    font-size: 8px;
  }

  .header-cta {
    min-width: 108px;
    min-height: 48px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .header-cta svg {
    width: 16px;
    height: 16px;
  }

  .menu-button {
    width: 42px;
  }

  .menu-button svg {
    width: 30px;
    height: 30px;
  }

  .mobile-menu {
    top: 98px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 112px 0 62px;
  }

  .hero-copy h1 {
    max-width: 320px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-copy p {
    max-width: 310px;
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 46px;
    font-size: 10px;
  }

  .trust-grid {
    width: calc(100% - 28px);
    border-radius: 22px;
    padding: 16px 8px;
  }

  .trust-item {
    min-height: 110px;
    gap: 8px;
    padding-inline: 4px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
  }

  .trust-icon svg {
    width: 24px;
    height: 24px;
  }

  .trust-item h2 {
    max-width: 72px;
    font-size: 9px;
    line-height: 1.18;
  }

  .about-section {
    padding-top: 34px;
  }

  .about-grid {
    width: min(100% - 24px, 560px);
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: 14px;
  }

  .about-photo {
    min-height: 350px;
    border-radius: 0 20px 0 20px;
  }

  .about-photo img {
    min-height: 350px;
    object-position: 64% center;
  }

  .photo-badge {
    display: none;
  }

  .about-copy h2 {
    font-size: clamp(27px, 7vw, 36px);
  }

  .title-line {
    width: 46px;
    margin: 14px 0;
  }

  .about-copy p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.42;
  }

  .about-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .about-actions .btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .credential {
    font-size: 10px;
    text-align: center;
  }

  .service-shell {
    width: auto;
    margin-left: 0;
  }

  .service-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .service-card {
    min-width: 0;
    min-height: 286px;
    grid-template-columns: 1fr;
    grid-template-rows: 96px 1fr;
    border-radius: 18px;
  }

  .service-image {
    min-height: 96px;
  }

  .service-body {
    padding: 14px 12px 52px;
    gap: 8px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
  }

  .service-icon svg {
    width: 19px;
    height: 19px;
  }

  .service-body h3 {
    font-size: 21px;
  }

  .service-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .service-body a {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }

  .service-body a svg {
    width: 17px;
    height: 17px;
  }

  .service-dots {
    display: none;
  }

  .method-grid {
    gap: 24px;
  }

  .method-section,
  .faq-section,
  .final-cta {
    padding: 46px 0;
  }

  .method-copy .section-kicker,
  .faq-copy .section-kicker {
    margin-bottom: 10px;
  }

  .method-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: .98;
  }

  .method-copy p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  .method-copy .btn {
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
  }

  .mind-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mind-center {
    min-height: 74px;
    padding: 13px 14px;
  }

  .mind-center svg {
    width: 30px;
    height: 30px;
  }

  .mind-center strong {
    font-size: 24px;
  }

  .mind-center span {
    font-size: 10px;
  }

  .mind-node {
    min-height: 108px;
    padding: 12px;
  }

  .mind-node h3 {
    font-size: 20px;
  }

  .mind-node p {
    font-size: 11px;
    line-height: 1.35;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .testimonial-card {
    min-height: 210px;
    padding: 16px;
  }

  .stars svg {
    width: 13px;
    height: 13px;
  }

  .testimonial-card blockquote {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .testimonial-card footer {
    gap: 8px;
  }

  .testimonial-card footer span {
    width: 30px;
    height: 30px;
  }

  .testimonial-card footer strong {
    font-size: 10px;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq-copy h2 {
    font-size: clamp(31px, 8.4vw, 40px);
  }

  .faq-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.48;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item button {
    min-height: 58px;
  }

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

@media (max-width: 480px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .site-header .brand-copy strong {
    max-width: 160px;
    font-size: 15px;
  }

  .site-header .brand-copy span {
    font-size: 8px;
  }

  .header-cta span {
    max-width: 58px;
  }

  .hero {
    min-height: 500px;
  }

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

  .hero-copy h1 {
    max-width: 290px;
    font-size: 38px;
  }

  .hero-copy p {
    max-width: 286px;
    font-size: 13px;
  }

  .about-grid {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: 12px;
  }

  .about-photo,
  .about-photo img {
    min-height: 330px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .about-copy p {
    font-size: 12px;
  }

  .service-track,
  .testimonial-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 276px;
  }

  .service-body h3 {
    font-size: 19px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }
}

/* Maria Madalena de Novaes content update */
.desktop-nav {
  gap: clamp(14px, 1.8vw, 28px);
}

.hero-copy h1 {
  max-width: 760px;
}

.highlights-band {
  background:
    linear-gradient(120deg, rgba(25, 35, 22, .98), rgba(26, 77, 92, .96) 54%, rgba(87, 96, 69, .95));
}

.highlights-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.highlights-grid .trust-item {
  min-height: 174px;
  padding: 24px 16px;
}

.highlights-grid .trust-icon {
  width: 52px;
  height: 52px;
}

.highlights-grid .trust-item h2 {
  max-width: 156px;
  font-size: 11px;
  line-height: 1.28;
}

.help-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.help-grid .service-card {
  min-height: 336px;
  grid-template-columns: 38% 1fr;
  grid-template-rows: 1fr;
}

.help-grid .service-image {
  min-height: 336px;
}

.help-grid .service-body {
  padding: 22px 22px 62px;
}

.help-grid .service-body h3 {
  font-size: 28px;
}

.help-grid .service-body p {
  color: #4d5148;
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
}

.help-grid .service-card:nth-child(1) .service-image img { object-position: 70% center; }
.help-grid .service-card:nth-child(2) .service-image img { object-position: 64% center; }
.help-grid .service-card:nth-child(3) .service-image img { object-position: 58% center; }
.help-grid .service-card:nth-child(4) .service-image img { object-position: 34% center; }
.help-grid .service-card:nth-child(5) .service-image img { object-position: 76% center; }
.help-grid .service-card:nth-child(6) .service-image img { object-position: 50% center; }

.book-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 241, 232, .98), rgba(255, 250, 243, .9) 48%, rgba(235, 225, 210, .92)),
    var(--cream);
}

.book-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26, 77, 92, .08), transparent 34%, rgba(184, 122, 44, .09));
}

.book-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(430px, 1.14fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.book-copy h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5.6vw, 66px);
  font-weight: 600;
  line-height: .98;
}

.book-copy p {
  max-width: 620px;
  margin: 0 0 16px;
  color: #34372f;
  font-size: 17px;
}

.book-showcase {
  display: grid;
  gap: 26px;
}

.book-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.book-frame {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 77, 92, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 250, 243, .72)),
    var(--porcelain);
  box-shadow: 0 24px 70px rgba(26, 77, 92, .16);
}

.book-placeholder {
  min-height: 430px;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  border-radius: 4px;
  background:
    linear-gradient(150deg, rgba(25, 35, 22, .92), rgba(26, 77, 92, .88)),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 250, 243, .12) 48% 52%, transparent 52%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  transform: scale(1);
  transition: transform .42s var(--ease), filter .42s var(--ease);
}

.book-placeholder-alt {
  background:
    linear-gradient(150deg, rgba(82, 88, 66, .94), rgba(178, 119, 49, .76)),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 250, 243, .16) 48% 52%, transparent 52%);
}

.book-placeholder span {
  max-width: 180px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.book-frame:hover .book-placeholder,
.book-frame:focus-within .book-placeholder {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.book-actions {
  display: flex;
  justify-content: center;
}

.cta-copy p + p {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlights-grid .trust-item:nth-child(4) {
    border-left: 0;
  }

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

@media (max-width: 920px) {
  .book-layout {
    grid-template-columns: 1fr;
  }

  .book-copy h2 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .book-placeholder {
    min-height: 360px;
  }

  .site-header .brand-copy strong {
    max-width: 160px;
    font-size: 16px;
  }

  .site-header .brand-copy span {
    font-size: 9px;
  }
}

@media (max-width: 700px) {
  .hero-copy h1 {
    max-width: 330px;
    font-size: 38px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 10px;
  }

  .highlights-grid .trust-item {
    min-height: 122px;
    border-left: 0;
  }

  .highlights-grid .trust-item:nth-child(even) {
    border-left: 1px solid rgba(26, 77, 92, .13);
  }

  .highlights-grid .trust-item h2 {
    max-width: 128px;
    font-size: 10px;
  }

  .help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .help-grid .service-card {
    min-height: 188px;
    grid-template-columns: 110px 1fr;
    grid-template-rows: 1fr;
  }

  .help-grid .service-image {
    min-height: 188px;
  }

  .help-grid .service-body {
    padding: 16px 14px 52px;
  }

  .help-grid .service-body h3 {
    font-size: 23px;
  }

  .help-grid .service-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .book-layout {
    width: min(100% - 28px, 540px);
  }

  .book-copy h2 {
    font-size: 34px;
  }

  .book-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .book-images {
    gap: 14px;
  }

  .book-placeholder {
    min-height: 300px;
    padding: 18px;
  }

  .book-placeholder span {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .site-header .brand-copy strong {
    max-width: 130px;
    font-size: 13px;
  }

  .site-header .brand-copy span {
    font-size: 7px;
  }

  .header-cta {
    min-width: 92px;
  }

  .hero-copy h1 {
    max-width: 292px;
    font-size: 34px;
  }

  .book-images {
    grid-template-columns: 1fr;
  }

  .book-placeholder {
    min-height: 290px;
  }
}

/* Refinements requested: restore compact front/service rhythm and upgrade book layout */
.hero-copy h1 {
  max-width: 600px;
}

.highlights-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.highlights-grid .trust-item {
  min-height: 150px;
  padding: 22px 14px;
}

.highlights-grid .trust-icon {
  width: 48px;
  height: 48px;
}

.highlights-grid .trust-icon svg {
  width: 26px;
  height: 26px;
}

.highlights-grid .trust-item h2 {
  max-width: 138px;
  font-size: 10px;
  line-height: 1.22;
}

.help-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-grid .service-card {
  min-height: 272px;
  grid-template-columns: 42% 1fr;
  grid-template-rows: 1fr;
  border-radius: 14px;
}

.help-grid .service-image {
  min-height: 272px;
}

.help-grid .service-body {
  padding: 20px 22px 58px;
}

.help-grid .service-body h3 {
  font-size: 27px;
}

.help-grid .service-body p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.book-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: center;
}

.book-showcase {
  gap: 20px;
}

.book-images {
  grid-template-columns: 1fr;
  gap: 18px;
}

.book-frame {
  padding: 9px;
}

.book-placeholder {
  min-height: 242px;
  aspect-ratio: 16 / 10;
}

.book-placeholder span {
  max-width: 220px;
  font-size: 32px;
}

.book-actions {
  justify-content: flex-start;
}

@media (max-width: 1180px) {
  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlights-grid .trust-item {
    min-height: 112px;
    padding: 18px 10px;
  }

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

@media (max-width: 920px) {
  .book-layout {
    grid-template-columns: minmax(0, .95fr) minmax(220px, .75fr);
    gap: 24px;
  }

  .book-copy h2 {
    font-size: clamp(30px, 5.6vw, 42px);
  }

  .book-copy p {
    font-size: 14px;
    line-height: 1.52;
  }

  .book-placeholder {
    min-height: 210px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 560px;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: clamp(39px, 11vw, 50px);
  }

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

  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 14px 8px;
  }

  .highlights-grid .trust-item,
  .highlights-grid .trust-item:nth-child(even) {
    min-height: 104px;
    padding: 10px 4px;
    border-left: 1px solid rgba(26, 77, 92, .13);
  }

  .highlights-grid .trust-item:nth-child(3n + 1) {
    border-left: 0;
  }

  .highlights-grid .trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .highlights-grid .trust-icon svg {
    width: 22px;
    height: 22px;
  }

  .highlights-grid .trust-item h2 {
    max-width: 92px;
    font-size: 8.5px;
    line-height: 1.12;
  }

  .help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .help-grid .service-card {
    min-width: 0;
    min-height: 286px;
    grid-template-columns: 1fr;
    grid-template-rows: 96px 1fr;
    border-radius: 18px;
  }

  .help-grid .service-image {
    min-height: 96px;
  }

  .help-grid .service-body {
    padding: 14px 12px 52px;
    gap: 8px;
  }

  .help-grid .service-icon {
    width: 34px;
    height: 34px;
  }

  .help-grid .service-icon svg {
    width: 19px;
    height: 19px;
  }

  .help-grid .service-body h3 {
    font-size: 19px;
  }

  .help-grid .service-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .help-grid .service-body a {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }

  .book-layout {
    width: min(100% - 28px, 540px);
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .book-copy h2 {
    font-size: 33px;
    line-height: .98;
  }

  .book-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .book-placeholder {
    min-height: 224px;
  }

  .book-actions {
    justify-content: stretch;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 540px;
  }

  .hero-copy h1 {
    max-width: 302px;
    font-size: 42px;
  }

  .hero-copy p {
    max-width: 302px;
    font-size: 14px;
  }

  .highlights-grid {
    width: calc(100% - 28px);
  }

  .help-grid {
    gap: 10px;
  }

  .help-grid .service-card {
    min-height: 278px;
  }

  .help-grid .service-body h3 {
    font-size: 18px;
  }

  .book-placeholder {
    min-height: 210px;
  }

  .book-placeholder span {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    min-height: 88px;
    gap: 6px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark svg {
    width: 22px;
    height: 22px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .header-cta span {
    max-width: 56px;
  }

  .mobile-menu {
    top: 88px;
    left: 10px;
    right: 10px;
    padding: 8px;
    gap: 3px;
  }

  .mobile-menu a {
    min-height: 40px;
    font-size: 10px;
    padding: 0 10px;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-image {
    max-height: 200px;
  }

  .contact-card {
    padding: 18px;
    gap: 10px;
  }

  .contact-card a,
  .contact-card span {
    font-size: 13px;
    padding: 6px 10px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-map {
    min-height: 250px;
  }
}

/* Premium mobile-first refinements */
.site-header .brand,
.footer .brand {
  min-width: 0;
}

.site-header .brand-copy,
.footer .brand-copy {
  min-width: 0;
}

.site-header .brand-copy strong {
  text-wrap: balance;
}

.menu-button {
  border: 1px solid rgba(26, 77, 92, .12);
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 10px 26px rgba(26, 77, 92, .08);
}

.service-image {
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(25, 35, 22, .03), rgba(25, 35, 22, .28)),
    linear-gradient(120deg, rgba(196, 138, 60, .12), transparent 48%, rgba(26, 77, 92, .14));
}

.service-image img {
  filter: saturate(.9) contrast(1.06) brightness(.94);
  transition: transform .48s var(--ease), filter .48s var(--ease);
}

.service-card:hover .service-image img {
  filter: saturate(.98) contrast(1.08) brightness(.98);
  transform: scale(1.08);
}

.books-section {
  background:
    linear-gradient(135deg, rgba(250, 248, 243, .98), rgba(245, 240, 230, .94) 46%, rgba(235, 229, 219, .9)),
    var(--porcelain);
}

.books-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin-inline: auto;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(26, 77, 92, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 250, 243, .78)),
    var(--white);
  box-shadow: 0 24px 70px rgba(26, 77, 92, .12);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}

.book-card:hover,
.book-card:focus-within {
  border-color: rgba(196, 138, 60, .34);
  box-shadow: 0 32px 82px rgba(26, 77, 92, .16);
  transform: translateY(-6px);
}

.book-image {
  position: relative;
  min-height: 320px;
  max-height: none;
  aspect-ratio: auto;
  border-right: 1px solid rgba(26, 77, 92, .12);
  background:
    linear-gradient(145deg, rgba(25, 35, 22, .96), rgba(26, 77, 92, .9) 58%, rgba(196, 138, 60, .72)),
    var(--petrol);
}

.book-image img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-cover-fallback {
  position: absolute;
  inset: 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(25, 35, 22, .92), rgba(26, 77, 92, .88)),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 250, 243, .14) 48% 52%, transparent 52%);
  text-align: center;
}

.book-image:not(.is-empty) .book-cover-fallback {
  opacity: 0;
}

.book-cover-fallback svg {
  width: 38px;
  height: 38px;
  color: #d3a15f;
  stroke-width: 1.5;
}

.book-cover-fallback span {
  max-width: 150px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.book-content {
  display: grid;
  align-content: center;
  padding: 28px;
}

.book-content h3 {
  margin: 0 0 10px;
  color: var(--petrol);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.book-content p {
  display: block;
  margin: 0 0 22px;
  color: #4d5148;
  font-size: 14px;
  line-height: 1.58;
  -webkit-line-clamp: initial;
}

.book-modal-btn {
  width: auto;
  justify-self: start;
  padding-inline: 22px;
}

.location-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, .98), rgba(245, 240, 230, .92) 48%, rgba(235, 229, 219, .9)),
    var(--cream);
}

.location-grid {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  align-items: stretch;
}

.container.location-grid,
.container.cta-grid {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  overflow: visible;
}

.location-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(26, 77, 92, .13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 250, 243, .72)),
    var(--white);
  box-shadow: 0 28px 78px rgba(26, 77, 92, .12);
}

.location-copy::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 3px;
  background: linear-gradient(180deg, var(--copper), rgba(26, 77, 92, .52));
}

.location-copy h2 {
  margin: 0 0 18px;
  color: var(--petrol);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: .98;
}

.location-copy p {
  max-width: 560px;
  margin: 0;
  color: #4d5148;
  font-size: 16px;
}

.location-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.location-details article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(26, 77, 92, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 14px 34px rgba(26, 77, 92, .07);
}

.location-details svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--copper);
  stroke-width: 1.7;
}

.location-details strong {
  display: block;
  color: var(--petrol);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.22;
  text-transform: uppercase;
}

.location-details span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.location-actions {
  margin-top: 28px;
}

.location-copy .btn {
  margin-top: 0;
}

.location-map {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(26, 77, 92, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 32px 86px rgba(26, 77, 92, .17);
  aspect-ratio: auto;
}

.location-map iframe {
  min-height: 560px;
  margin-bottom: -70px;
  border-radius: 6px;
  filter: saturate(.84) contrast(1.04);
  transform: translateY(-70px);
}

.map-eyebrow {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--petrol);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(255, 250, 243, .88);
  box-shadow: 0 14px 34px rgba(26, 77, 92, .14);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-eyebrow svg {
  width: 16px;
  height: 16px;
  color: var(--copper);
}

.final-cta {
  position: relative;
}

.cta-copy h2 {
  max-width: 760px;
}

.cta-copy p {
  max-width: 650px;
  line-height: 1.68;
}

.contact-card {
  gap: 11px;
  padding: clamp(22px, 3vw, 32px);
  border-color: rgba(255, 255, 255, .24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .07)),
    rgba(255, 255, 255, .08);
  box-shadow: 0 30px 84px rgba(0, 0, 0, .22);
}

.contact-card a,
.contact-card span {
  min-height: 52px;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  border-color: rgba(211, 161, 95, .4);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
  transform: translateY(-2px);
}

.contact-card a[href*="instagram"] {
  min-height: 70px;
  color: var(--white);
  border-color: rgba(211, 161, 95, .64);
  background:
    linear-gradient(135deg, rgba(196, 138, 60, .34), rgba(26, 77, 92, .34)),
    rgba(255, 255, 255, .14);
  box-shadow: 0 22px 48px rgba(196, 138, 60, .18);
  font-size: 15px;
}

.contact-card a[href*="instagram"] svg {
  width: 34px;
  height: 34px;
  color: #f1c884;
}

.contact-card a[href*="x.com"],
.contact-card a[href*="facebook"],
.contact-card a[href*="blogspot"] {
  min-height: 58px;
  border-color: rgba(211, 161, 95, .26);
  background: rgba(211, 161, 95, .12);
}

.contact-card svg,
.contact-card a svg {
  width: 25px;
  height: 25px;
  color: #d3a15f;
  stroke-width: 1.8;
}

.contact-card span {
  min-height: auto;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.footer {
  padding: 38px 0 34px;
  border-top: 1px solid rgba(26, 77, 92, .12);
  background:
    linear-gradient(180deg, rgba(250, 248, 243, .96), rgba(235, 229, 219, .84)),
    var(--porcelain);
}

.footer-inner {
  position: relative;
  padding-top: 0;
  border-top: 0;
}

.footer .brand {
  gap: 14px;
}

.footer .brand-mark {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 38px rgba(26, 77, 92, .12);
}

.footer .brand-copy strong {
  max-width: none;
  font-size: 20px;
}

.footer p {
  max-width: 620px;
  color: #55584f;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 82px;
    width: min(100% - 24px, 820px);
  }

  .site-header .brand {
    flex: 1 1 auto;
    gap: 10px;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-copy strong {
    max-width: min(48vw, 240px);
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1;
    letter-spacing: .025em;
  }

  .site-header .brand-copy span {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .mobile-menu {
    top: 88px;
  }

  .hero-actions {
    margin-inline: auto;
    justify-items: stretch;
  }

  .location-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 88px;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    border-radius: 0 0 20px 20px;
  }

  .header-inner {
    min-height: 76px;
    gap: 8px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-cta {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .header-cta span {
    display: none;
  }

  .header-cta svg {
    width: 18px;
    height: 18px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .menu-button svg {
    width: 26px;
    height: 26px;
  }

  .mobile-menu {
    top: 80px;
    left: 12px;
    right: 12px;
    border-radius: 16px;
  }

  .hero-content {
    width: min(100% - 32px, 520px);
    text-align: center;
  }

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

  .hero-copy .eyebrow {
    justify-content: center;
  }

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

  .hero-actions {
    width: min(342px, 100%);
    margin-inline: auto;
  }

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

  .books-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 18px;
  }

  .book-card {
    grid-template-columns: 1fr;
  }

  .book-image {
    width: min(68%, 230px);
    min-height: 282px;
    margin: 22px auto 0;
    overflow: hidden;
    border-right: 0;
    border-radius: 8px;
  }

  .book-content {
    padding: 22px;
    text-align: center;
  }

  .book-modal-btn {
    width: 100%;
    justify-self: stretch;
  }

  .location-copy {
    padding: 28px 22px;
  }

  .location-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .location-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .location-details article {
    padding: 14px;
  }

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

  .location-map {
    padding: 8px;
  }

  .location-map iframe {
    min-height: 390px;
  }

  .map-eyebrow {
    top: 18px;
    left: 18px;
    font-size: 10px;
  }

  .cta-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .cta-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .contact-card a,
  .contact-card span {
    min-height: 54px;
    padding: 12px 13px;
    font-size: 13px;
  }

  .contact-card a[href*="instagram"] {
    min-height: 72px;
    font-size: 14px;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer .brand {
    justify-content: center;
  }

  .footer .brand-copy strong {
    max-width: 220px;
    font-size: 17px;
    line-height: 1;
  }

  .footer p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header .brand-copy strong {
    max-width: min(47vw, 166px);
    font-size: 13px;
    line-height: 1.02;
  }

  .site-header .brand-copy span {
    font-size: 7px;
    letter-spacing: .15em;
  }

  .hero-actions {
    width: min(318px, 100%);
    gap: 10px;
  }

  .books-grid {
    max-width: 390px;
  }

  .book-image {
    width: min(74%, 220px);
    min-height: 268px;
  }

  .book-cover-fallback span {
    font-size: 27px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card svg,
  .contact-card a svg {
    width: 24px;
    height: 24px;
  }

  .contact-card a[href*="instagram"] svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 375px) {
  .header-inner {
    min-height: 72px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-copy strong {
    max-width: 132px;
    font-size: 12px;
  }

  .header-cta,
  .menu-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .mobile-menu {
    top: 76px;
  }

  .book-image {
    width: min(80%, 210px);
    min-height: 252px;
  }
}

@media (max-width: 700px) {
  .help-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .help-grid .service-card {
    min-height: 212px;
    grid-template-columns: minmax(118px, 36%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    border-radius: 14px;
  }

  .help-grid .service-image {
    min-height: 212px;
  }

  .help-grid .service-body {
    padding: 18px 16px 58px;
    gap: 10px;
  }

  .help-grid .service-icon {
    width: 38px;
    height: 38px;
  }

  .help-grid .service-icon svg {
    width: 21px;
    height: 21px;
  }

  .help-grid .service-body h3 {
    font-size: 24px;
  }

  .help-grid .service-body p {
    font-size: 13px;
    line-height: 1.42;
    -webkit-line-clamp: 4;
  }

  .help-grid .service-body a {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .help-grid .service-card {
    min-height: 206px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .help-grid .service-image {
    min-height: 206px;
  }

  .help-grid .service-body {
    padding: 16px 14px 56px;
  }

  .help-grid .service-body h3 {
    font-size: 22px;
  }

  .help-grid .service-body p {
    font-size: 12.5px;
    -webkit-line-clamp: 4;
  }
}

/* Two-column mobile card rhythm requested */
@media (max-width: 700px) {
  .help-grid,
  .books-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .help-grid .service-card {
    min-height: 318px;
    grid-template-columns: 1fr;
    grid-template-rows: 118px minmax(0, 1fr);
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 250, 243, .84)),
      var(--white);
    box-shadow: 0 18px 48px rgba(26, 77, 92, .1);
  }

  .help-grid .service-image {
    min-height: 118px;
  }

  .help-grid .service-body {
    min-height: 200px;
    padding: 15px 13px 56px;
    gap: 9px;
  }

  .help-grid .service-icon {
    width: 36px;
    height: 36px;
    margin-top: -3px;
  }

  .help-grid .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .help-grid .service-body h3 {
    font-size: 22px;
    line-height: .96;
    text-wrap: balance;
  }

  .help-grid .service-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .help-grid .service-body a {
    right: 13px;
    bottom: 13px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 26px rgba(26, 77, 92, .1);
  }

  .books-grid {
    max-width: 520px;
    margin-top: 24px;
  }

  .book-card {
    grid-template-columns: 1fr;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(26, 77, 92, .1);
  }

  .book-image {
    width: 100%;
    min-height: 210px;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(26, 77, 92, .12);
    border-radius: 0;
  }

  .book-cover-fallback {
    inset: 10px;
    padding: 16px;
    border-radius: 8px;
  }

  .book-cover-fallback svg {
    width: 30px;
    height: 30px;
  }

  .book-cover-fallback span {
    max-width: 110px;
    font-size: 25px;
  }

  .book-content {
    padding: 15px 13px 14px;
    text-align: left;
  }

  .book-content h3 {
    margin-bottom: 8px;
    font-size: 23px;
  }

  .book-content p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 50px;
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .book-modal-btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
    font-size: 9.5px;
  }
}

@media (max-width: 480px) {
  .help-grid,
  .books-grid {
    gap: 11px;
  }

  .help-grid .service-card {
    min-height: 304px;
    grid-template-rows: 104px minmax(0, 1fr);
  }

  .help-grid .service-image {
    min-height: 104px;
  }

  .help-grid .service-body {
    min-height: 200px;
    padding: 13px 11px 52px;
  }

  .help-grid .service-icon {
    width: 34px;
    height: 34px;
  }

  .help-grid .service-body h3 {
    font-size: 19.5px;
  }

  .help-grid .service-body p {
    font-size: 11.5px;
    line-height: 1.36;
    -webkit-line-clamp: 5;
  }

  .help-grid .service-body a {
    right: 11px;
    bottom: 11px;
    width: 36px;
    height: 36px;
  }

  .book-image {
    min-height: 184px;
  }

  .book-cover-fallback span {
    font-size: 22px;
  }

  .book-content {
    padding: 13px 11px 12px;
  }

  .book-content h3 {
    font-size: 21px;
  }

  .book-content p {
    font-size: 11.5px;
  }
}

@media (max-width: 375px) {
  .help-grid,
  .books-grid {
    gap: 10px;
  }

  .help-grid .service-card {
    min-height: 292px;
    grid-template-rows: 98px minmax(0, 1fr);
  }

  .help-grid .service-image {
    min-height: 98px;
  }

  .help-grid .service-body h3 {
    font-size: 18px;
  }

  .help-grid .service-body p {
    font-size: 11px;
    -webkit-line-clamp: 5;
  }

  .book-image {
    min-height: 172px;
  }

  .book-content h3 {
    font-size: 20px;
  }

  .book-content p {
    min-height: 46px;
    font-size: 11px;
  }
}

/* Mission and publication modal polish */
.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 108px) 0;
  background:
    linear-gradient(115deg, rgba(16, 35, 29, .99), rgba(20, 61, 68, .98) 54%, rgba(26, 77, 92, .98)),
    var(--petrol);
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, .04), transparent 24%, rgba(196, 138, 60, .06) 72%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 42%, rgba(0, 0, 0, .08));
}

.container.method-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  overflow: visible;
}

.method-grid {
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  gap: clamp(32px, 4.6vw, 62px);
  align-items: center;
}

.method-copy {
  max-width: 590px;
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 2px solid rgba(211, 161, 95, .72);
}

.method-copy h2 {
  max-width: 580px;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1;
}

.method-copy p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.66;
}

.method-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.method-points article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .1);
}

.method-points svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #d3a15f;
  stroke-width: 1.8;
}

.method-points span {
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.method-copy .btn {
  margin-top: 28px;
}

.mind-map {
  min-width: 0;
  gap: 14px;
}

.mind-center,
.mind-node {
  border-color: rgba(255, 255, 255, .14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .055)),
    rgba(255, 255, 255, .06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .14);
  backdrop-filter: blur(8px);
}

.mind-center {
  min-height: 106px;
  grid-template-columns: auto 1fr;
  padding: 20px 24px;
}

.mind-center strong {
  font-size: clamp(30px, 3.2vw, 38px);
}

.mind-node {
  min-height: 156px;
  padding: 22px;
}

.mind-node h3 {
  font-size: 29px;
}

.mind-node p {
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
}

.book-modal {
  background:
    linear-gradient(135deg, rgba(14, 58, 69, .92), rgba(25, 35, 22, .9)),
    rgba(26, 77, 92, .92);
  backdrop-filter: blur(10px);
}

.book-modal-content {
  max-width: 620px;
  border: 1px solid rgba(26, 77, 92, .16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 243, .94)),
    var(--white);
  box-shadow: 0 34px 92px rgba(0, 0, 0, .32);
}

.book-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.book-modal-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .68;
}

.book-modal-content h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: .96;
}

.book-modal-content p {
  margin: 0 0 22px;
  color: #4d5148;
  font-size: 16px;
  line-height: 1.7;
}

.book-modal-info {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.book-modal-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--petrol);
  border: 1px solid rgba(26, 77, 92, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.book-modal-info span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper);
}

.book-modal-content .btn {
  width: 100%;
}

@media (max-width: 1180px) {
  .container.method-grid {
    width: min(100% - 34px, 1040px);
  }

  .method-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 30px;
  }

  .method-copy h2 {
    font-size: clamp(34px, 4vw, 46px);
  }

  .method-copy p {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .method-points {
    margin-top: 20px;
  }

  .method-points article {
    min-height: 48px;
    padding: 10px 12px;
  }

  .mind-center {
    min-height: 92px;
    padding: 18px 20px;
  }

  .mind-node {
    min-height: 136px;
    padding: 18px;
  }

  .mind-node h3 {
    font-size: 26px;
  }

  .mind-node p {
    font-size: 13.5px;
  }
}

@media (max-width: 920px) {
  .method-section {
    padding: 64px 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-copy {
    max-width: 720px;
  }

  .method-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .method-section {
    padding: 54px 0;
  }

  .container.method-grid {
    width: min(100% - 34px, 520px);
  }

  .method-copy {
    padding-left: 16px;
  }

  .method-copy h2 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .method-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .method-points {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mind-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mind-center {
    min-height: 86px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px;
    text-align: center;
  }

  .mind-center svg {
    width: 34px;
    height: 34px;
  }

  .mind-center strong {
    font-size: 28px;
  }

  .mind-center span {
    font-size: 9px;
  }

  .mind-node {
    min-height: 138px;
    padding: 14px;
  }

  .mind-node span {
    width: 34px;
    height: 34px;
  }

  .mind-node h3 {
    font-size: 22px;
  }

  .mind-node p {
    font-size: 11.5px;
    line-height: 1.42;
  }

  .book-modal-content {
    padding: 32px 22px 24px;
  }
}

/* Final premium responsive refinement - structure preserved */
.btn,
.service-card,
.book-card,
.contact-card a,
.whatsapp-float {
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  .btn,
  .service-card,
  .book-card,
  .contact-card a,
  .service-image img,
  .book-image img,
  .whatsapp-float {
    transition:
      transform .28s var(--ease),
      border-color .28s var(--ease),
      background .28s var(--ease),
      box-shadow .28s var(--ease),
      filter .28s var(--ease);
  }

  .reveal {
    transition-duration: .75s;
  }
}

.btn {
  box-shadow: 0 14px 34px rgba(10, 30, 38, .14);
}

.btn-primary {
  border-color: rgba(211, 161, 95, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--petrol), var(--petrol-dark));
  box-shadow: 0 20px 48px rgba(10, 30, 38, .28);
}

.btn-light,
.btn-outline-light {
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .075)),
    rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 18px 44px rgba(0, 0, 0, .15);
  backdrop-filter: blur(16px);
}

.service-card,
.book-card {
  border-color: rgba(26, 77, 92, .12);
  box-shadow: 0 18px 46px rgba(26, 77, 92, .085);
}

.service-card:hover,
.service-card:focus-within,
.book-card:hover,
.book-card:focus-within {
  border-color: rgba(196, 138, 60, .28);
  box-shadow: 0 28px 72px rgba(26, 77, 92, .15);
}

.service-image {
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 30, 38, .02), rgba(10, 30, 38, .16)),
    linear-gradient(120deg, rgba(211, 161, 95, .10), transparent 52%);
  mix-blend-mode: multiply;
}

.service-image img {
  filter: saturate(.95) contrast(1.05) brightness(.97);
}

.service-card:hover .service-image img,
.service-card:focus-within .service-image img {
  filter: saturate(1.02) contrast(1.08) brightness(.98);
}

.help-grid .service-card:nth-child(1) .service-image img {
  object-position: 50% center;
}

.help-grid .service-card:nth-child(6) .service-image img {
  object-position: 52% center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 32, 27, .96), rgba(21, 73, 84, .82)),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .30)),
    url("../images/suedem.png") center / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, .13), transparent 31%),
    linear-gradient(180deg, rgba(10, 30, 38, .04), rgba(10, 30, 38, .30));
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  text-shadow: 0 16px 44px rgba(0, 0, 0, .34);
}

.contact-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 24px 70px rgba(0, 0, 0, .22);
}

.contact-card a,
.contact-card span {
  overflow-wrap: anywhere;
}

.contact-card a[href*="instagram"],
.contact-card .instagram-link {
  border-color: rgba(211, 161, 95, .58);
  background:
    linear-gradient(135deg, rgba(211, 161, 95, .28), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

@media (max-width: 920px) {
  .final-cta {
    background-position: 54% center;
  }

  .container.cta-grid {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .cta-copy {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    border-radius: 0 0 18px 18px;
    background: rgba(255, 250, 243, .94);
    box-shadow: 0 12px 30px rgba(10, 30, 38, .12);
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 8px;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
    border-color: rgba(26, 77, 92, .14);
    background: rgba(255, 255, 255, .76);
  }

  .site-header .brand-copy {
    min-width: 0;
    max-width: 138px;
    gap: 2px;
  }

  .site-header .brand-copy strong {
    display: block;
    max-width: none;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-header .brand-copy strong::after {
    content: "Suedem Medeiros";
    display: block;
    overflow: hidden;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .045em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-header .brand-copy span {
    font-size: 6.5px;
    letter-spacing: .16em;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 7px;
  }

  .header-cta,
  .menu-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  .header-cta span {
    display: none;
  }

  .header-cta svg,
  .menu-button svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu {
    top: 72px;
    left: 12px;
    right: 12px;
    border-radius: 14px;
  }

  .mobile-menu a {
    min-height: 44px;
    border-radius: 10px;
    font-size: 10.5px;
  }

  .hero {
    min-height: 650px;
    align-items: end;
  }

  .hero-media img {
    object-position: 57% center;
    transform: scale(1.03);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 21, 26, .76) 0%, rgba(10, 30, 38, .54) 30%, rgba(12, 39, 45, .78) 100%),
      linear-gradient(90deg, rgba(10, 30, 38, .78), rgba(26, 77, 92, .28) 58%, rgba(10, 30, 38, .54));
  }

  .hero::after {
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(10, 30, 38, .56));
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    padding: 112px 0 46px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: .95;
    text-shadow: 0 16px 42px rgba(0, 0, 0, .52);
  }

  .hero-copy p {
    max-width: 340px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, .88);
    font-size: 13.5px;
    line-height: 1.58;
    text-shadow: 0 10px 26px rgba(0, 0, 0, .42);
  }

  .hero-actions {
    width: min(318px, 100%);
    display: grid;
    gap: 10px;
    margin: 24px auto 0;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 11px;
    letter-spacing: .10em;
  }

  .section {
    padding-block: 52px;
  }

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

  .section-heading h2 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: .98;
  }

  .section-heading p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .help-grid,
  .books-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-inline: auto;
  }

  .help-grid .service-card {
    min-width: 0;
    min-height: 300px;
    grid-template-columns: 1fr;
    grid-template-rows: 104px minmax(0, 1fr);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 38px rgba(26, 77, 92, .105);
  }

  .help-grid .service-image {
    min-height: 104px;
  }

  .help-grid .service-body {
    min-height: 196px;
    gap: 8px;
    padding: 13px 11px 52px;
  }

  .help-grid .service-icon {
    width: 34px;
    height: 34px;
    margin-top: -2px;
    box-shadow: 0 8px 18px rgba(26, 77, 92, .08);
  }

  .help-grid .service-icon svg {
    width: 19px;
    height: 19px;
  }

  .help-grid .service-body h3 {
    font-size: clamp(17px, 5.15vw, 20px);
    line-height: .98;
    text-wrap: balance;
  }

  .help-grid .service-body p {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(77, 81, 72, .88);
    font-size: 11.4px;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .help-grid .service-body a {
    right: 11px;
    bottom: 11px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 22px rgba(26, 77, 92, .10);
  }

  .help-grid .service-body a svg {
    width: 18px;
    height: 18px;
  }

  .book-card {
    min-width: 0;
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .book-image {
    min-height: 142px;
  }

  .book-content {
    padding: 14px 12px 16px;
  }

  .book-content h3 {
    font-size: 22px;
    line-height: .98;
  }

  .book-content p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .book-content .btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .final-cta {
    padding: 46px 0 86px;
    background-position: 58% center;
  }

  .container.cta-grid {
    width: min(100% - 28px, 520px);
    gap: 18px;
  }

  .cta-copy {
    max-width: 100%;
    text-align: left;
  }

  .cta-copy .section-kicker {
    font-size: 10px;
  }

  .cta-copy h2 {
    max-width: 340px;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: .96;
  }

  .cta-copy p {
    max-width: 342px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 13.2px;
    line-height: 1.55;
  }

  .contact-card {
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .075)),
      rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
  }

  .contact-card a,
  .contact-card span {
    min-height: 46px;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-card a[href*="instagram"],
  .contact-card .instagram-link {
    min-height: 54px;
    font-size: 12.5px;
  }

  .contact-card svg,
  .contact-card a svg {
    width: 20px;
    height: 20px;
  }

  .contact-card a[href*="instagram"] svg,
  .contact-card .instagram-link svg {
    width: 26px;
    height: 26px;
  }

  .footer {
    padding: 28px 0 32px;
  }

  .footer-inner {
    width: min(100% - 28px, 520px);
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer .brand {
    justify-content: center;
    gap: 10px;
  }

  .footer .brand-mark {
    width: 42px;
    height: 42px;
  }

  .footer .brand-copy strong {
    max-width: 200px;
    font-size: 16px;
    line-height: 1;
  }

  .footer .brand-copy span {
    font-size: 8px;
  }

  .footer p {
    max-width: 330px;
    text-align: center;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .whatsapp-float {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-width: 3px;
    box-shadow: 0 16px 38px rgba(23, 181, 119, .26);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float.is-soft-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.94);
  }
}

@media (max-width: 375px) {
  .container,
  .hero-content,
  .container.cta-grid,
  .footer-inner {
    width: min(100% - 24px, 520px);
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 60px;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
  }

  .site-header .brand-copy {
    max-width: 124px;
  }

  .site-header .brand-copy strong::after {
    font-size: 11.5px;
  }

  .site-header .brand-copy span {
    font-size: 6px;
  }

  .header-cta,
  .menu-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .mobile-menu {
    top: 68px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: 632px;
  }

  .hero-copy h1 {
    max-width: 320px;
    font-size: 33px;
  }

  .hero-copy p {
    max-width: 310px;
    font-size: 12.8px;
  }

  .hero-actions {
    width: min(304px, 100%);
  }

  .help-grid,
  .books-grid {
    gap: 10px;
  }

  .help-grid .service-card {
    min-height: 292px;
    grid-template-rows: 98px minmax(0, 1fr);
  }

  .help-grid .service-image {
    min-height: 98px;
  }

  .help-grid .service-body {
    padding: 12px 10px 50px;
  }

  .help-grid .service-body h3 {
    font-size: 17px;
  }

  .help-grid .service-body p {
    font-size: 10.8px;
    line-height: 1.34;
  }

  .book-image {
    min-height: 130px;
  }

  .contact-card {
    padding: 12px;
  }

  .contact-card a,
  .contact-card span {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 11.5px;
  }
}

/* Premium mobile intro composition */
@media (max-width: 700px) {
  .hero {
    min-height: min(724px, 100svh);
    align-items: center;
    background:
      linear-gradient(180deg, #0b2228 0%, #123d46 52%, #0f3033 100%);
  }

  .hero-media {
    opacity: .92;
  }

  .hero-media::before {
    content: "";
    position: absolute;
    inset: 78px 0 auto;
    height: 46%;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, .10), transparent 42%),
      url("../images/logo.png") center top / min(58vw, 220px) auto no-repeat;
    filter: grayscale(1) sepia(.35);
    mix-blend-mode: screen;
    opacity: .09;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 20, 25, .42) 0%, rgba(7, 20, 25, .70) 32%, rgba(8, 28, 34, .78) 100%),
      linear-gradient(90deg, rgba(7, 22, 27, .68), rgba(27, 81, 91, .28) 54%, rgba(8, 30, 36, .62));
  }

  .hero::after {
    height: 46%;
    background:
      linear-gradient(180deg, transparent 0%, rgba(9, 31, 35, .48) 72%, rgba(9, 31, 35, .82) 100%);
  }

  .hero-content {
    width: min(100% - 34px, 520px);
    padding: 88px 0 34px;
  }

  .hero-copy {
    position: relative;
    max-width: 370px;
    margin-inline: auto;
    padding-top: 20px;
    text-align: center;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 161, 95, .95), transparent);
    transform: translateX(-50%);
  }

  .hero-copy .eyebrow {
    justify-content: center;
    gap: 12px;
    color: #d79b4d;
    font-size: 11px;
    letter-spacing: .18em;
  }

  .hero-copy .eyebrow::before,
  .hero-copy .eyebrow::after {
    width: 28px;
    opacity: .72;
  }

  .hero-copy h1 {
    max-width: 340px;
    margin-top: 18px;
    font-size: clamp(44px, 12.4vw, 54px);
    line-height: .88;
    letter-spacing: .005em;
    text-shadow:
      0 2px 0 rgba(255, 255, 255, .04),
      0 18px 42px rgba(0, 0, 0, .54);
  }

  .hero-copy p {
    max-width: 320px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .9);
    font-size: 14.5px;
    line-height: 1.62;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .48);
  }

  .hero-actions {
    width: min(324px, 100%);
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .btn {
    min-height: 58px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .105em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .20),
      0 18px 44px rgba(0, 0, 0, .22);
  }

  .hero-actions .btn-primary {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0)),
      linear-gradient(135deg, #286a78, #0d4f5d);
  }

  .hero-actions .btn-outline-light {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .10)),
      rgba(255, 255, 255, .08);
  }
}

@media (max-width: 375px) {
  .hero {
    min-height: min(690px, 100svh);
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    padding-top: 78px;
  }

  .hero-copy {
    max-width: 326px;
  }

  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
  }

  .hero-copy h1 {
    max-width: 312px;
    font-size: clamp(40px, 12vw, 46px);
  }

  .hero-copy p {
    max-width: 300px;
    font-size: 13.4px;
  }

  .hero-actions {
    width: min(306px, 100%);
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-height: 54px;
  }
}

/* Real book covers */
.books-grid .book-image {
  background:
    radial-gradient(circle at 50% 28%, rgba(211, 161, 95, .18), transparent 46%),
    linear-gradient(145deg, rgba(9, 31, 35, .98), rgba(27, 69, 76, .92));
}

.books-grid .book-image img {
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(5, 13, 15, .32);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .24),
    0 0 0 1px rgba(255, 255, 255, .08);
}

@media (max-width: 700px) {
  .books-grid .book-image {
    min-height: clamp(212px, 61vw, 292px);
  }

  .books-grid .book-image img {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 7px;
  }
}

@media (max-width: 375px) {
  .books-grid .book-image {
    min-height: clamp(198px, 59vw, 260px);
  }
}

/* Book title polish for real publication names */
.books-grid .book-content h3 {
  max-width: 100%;
  line-height: .98;
  text-wrap: balance;
}

.books-grid .book-content p {
  color: rgba(77, 81, 72, .9);
}

@media (max-width: 700px) {
  .books-grid .book-content h3 {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1;
  }

  .books-grid .book-content p {
    -webkit-line-clamp: 5;
  }
}

@media (max-width: 375px) {
  .books-grid .book-content h3 {
    font-size: 17px;
  }
}
