:root {
  --ink: #101827;
  --ink-soft: #2a3342;
  --cream: #ead9c8;
  --cream-light: #f8f1ea;
  --paper: #fffdf9;
  --taupe: #b79f8b;
  --line: rgba(16, 24, 39, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(16, 24, 39, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 24, 39, 0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  font-family: Georgia, serif;
  font-size: 35px;
  line-height: 1;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: -2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--ink);
  transition: right 180ms ease;
}

.main-nav > a:not(.button):hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-light);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.18);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: #fff;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 74px 0 84px;
  background:
    radial-gradient(circle at 75% 15%, rgba(234, 217, 200, 0.64), transparent 32%),
    linear-gradient(135deg, #fffdf9 0%, #f8f1ea 60%, #eee0d2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  top: 18%;
  right: -130px;
  border: 1px solid rgba(16, 24, 39, 0.12);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  right: -235px;
  bottom: -280px;
  border: 1px solid rgba(16, 24, 39, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #786758;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--cream);
}

.hero h1,
.section-heading h2,
.office-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 82px);
}

.hero h1 em {
  font-weight: 500;
  color: #866f5d;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  color: #5d6673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span + span {
  position: relative;
}

.hero-meta span + span::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero-art {
  position: relative;
  min-height: 570px;
}

.portrait-card {
  position: absolute;
  inset: 0 18px 0 46px;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 240px 240px 34px 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(234,217,200,0.68)),
    var(--cream);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 50%;
  transform: translate(110px, -145px);
}

.large-psi {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(145px, 15vw, 220px);
  line-height: 0.9;
}

.portrait-card p {
  position: relative;
  z-index: 2;
  margin: 32px 0 0;
  font-family: "Allura", cursive;
  font-size: 39px;
}

.portrait-line {
  position: absolute;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 50%;
}

.portrait-line-one {
  width: 250px;
  height: 250px;
  left: -95px;
  bottom: 40px;
}

.portrait-line-two {
  width: 150px;
  height: 150px;
  left: -46px;
  bottom: 90px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 248px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.8);
  box-shadow: 0 18px 45px rgba(16, 24, 39, 0.12);
  backdrop-filter: blur(16px);
}

.floating-card-top {
  top: 115px;
  right: -30px;
}

.floating-card-bottom {
  left: 0;
  bottom: 75px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card small {
  color: #68717e;
  font-size: 10px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
}

.trust-strip {
  background: var(--ink);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 98px;
  border-right: 1px solid var(--white-line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--taupe);
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.trust-grid strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-light {
  background: var(--cream-light);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 9vw, 130px);
}

.section-heading h2,
.office-copy h2,
.contact-copy h2 {
  font-size: clamp(39px, 5vw, 62px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: #65707d;
}

.centered {
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.prose {
  color: var(--ink-soft);
  font-size: 18px;
}

.prose p:first-child {
  margin-top: 0;
}

.prose blockquote {
  position: relative;
  margin: 38px 0 0;
  padding: 30px 0 0 38px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.4;
}

.prose blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--taupe);
  font-size: 54px;
}

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

.step-card {
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 24, 39, 0.28);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #8a7462;
  font-family: "Playfair Display", serif;
  font-size: 31px;
}

.step-card h3 {
  margin: 55px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  color: #66717e;
}

.office-section {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.office-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #283141 0%, #121a28 72%);
}

.arch {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 58%;
  height: 84%;
  border: 1px solid rgba(234, 217, 200, 0.48);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.sun {
  position: absolute;
  left: 50%;
  top: 25%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 90px rgba(234, 217, 200, 0.18);
  transform: translateX(-50%);
}

.leaf {
  position: absolute;
  width: 150px;
  height: 320px;
  border: 1px solid rgba(234, 217, 200, 0.38);
  border-radius: 100% 0 100% 0;
}

.leaf-one {
  left: -35px;
  bottom: -85px;
  transform: rotate(16deg);
}

.leaf-two {
  right: -30px;
  bottom: -95px;
  transform: scaleX(-1) rotate(8deg);
}

.office-visual span {
  position: absolute;
  left: 34px;
  bottom: 25px;
  color: rgba(255,255,255,0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.office-copy address {
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.office-copy address strong {
  color: #fff;
  font-size: 20px;
}

.office-copy .button-outline {
  border-color: var(--cream);
  color: var(--cream);
}

.office-copy .button-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  list-style: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 28px;
  padding-right: 46px;
  color: #626d7a;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(234, 217, 200, 0.1), transparent 28%),
    var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.contact-links a > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,0.055);
  color: #fff;
  padding: 14px 15px;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cream);
  background: rgba(255,255,255,0.08);
}

.contact-form .button {
  margin-top: 4px;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.form-note {
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand > span {
  font-family: Georgia, serif;
  font-size: 30px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
}

.copyright {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: #173c32;
  box-shadow: 0 16px 40px rgba(16,24,39,0.22);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
}

.whatsapp-float svg {
  width: 29px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(183,159,139,0.75);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,253,249,0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 12px;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-grid,
  .split-grid,
  .office-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    min-height: 520px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

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

  .step-card {
    min-height: auto;
  }

  .step-card h3 {
    margin-top: 32px;
  }

  .section {
    padding: 90px 0;
  }

  .office-visual {
    min-height: 460px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .copyright {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand strong {
    font-size: 18px;
  }

  .main-nav {
    inset-block-start: 72px;
  }

  .hero {
    padding: 48px 0 65px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-text {
    font-size: 17px;
  }

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

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

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

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .hero-art {
    min-height: 450px;
    margin-top: 20px;
  }

  .portrait-card {
    inset: 0 0 0 18px;
  }

  .floating-card {
    min-width: 220px;
    padding: 13px 14px;
  }

  .floating-card-top {
    top: 78px;
    right: -4px;
  }

  .floating-card-bottom {
    left: 0;
    bottom: 45px;
  }

  .portrait-card p {
    font-size: 31px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .trust-grid div {
    justify-content: flex-start;
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .office-copy h2,
  .contact-copy h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .prose {
    font-size: 16px;
  }

  .prose blockquote {
    padding-left: 28px;
    font-size: 22px;
  }

  .step-card {
    padding: 28px;
  }

  .office-visual {
    min-height: 380px;
  }

  .sun {
    width: 110px;
    height: 110px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-links strong {
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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