
:root {
  --olive-950: #101a14;
  --olive-900: #17251c;
  --olive-850: #1f3025;
  --olive-700: #425344;
  --sage: #aebaa6;
  --cream: #f4efe5;
  --paper: #fbf8f2;
  --copper: #bd6d43;
  --copper-light: #d58a62;
  --ink: #263028;
  --muted: #697169;
  --line: rgba(36, 48, 39, 0.15);
  --serif: "Bodoni 72", Didot, "Cormorant Garamond", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--sans);
}

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

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

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(16, 26, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 96px;
  padding: 0 clamp(24px, 4vw, 72px);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1;
  width: fit-content;
}

.brand span {
  font-style: italic;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 38px;
}

.site-header nav a {
  color: rgba(244, 239, 229, 0.78);
  font-size: 14px;
  position: relative;
  transition: color 180ms ease;
}

.site-header nav a::after {
  background: var(--copper);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover {
  color: var(--cream);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  background: var(--copper);
  border: 1px solid var(--copper);
  color: white;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 20px;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  transition: background 220ms ease, border-color 220ms ease,
    transform 220ms ease, box-shadow 220ms ease;
  width: fit-content;
}

.button span {
  font-size: 19px;
  font-weight: 400;
}

.button:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  box-shadow: 0 12px 30px rgba(14, 22, 16, 0.2);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  border-color: var(--copper);
  color: var(--copper-light);
  justify-self: end;
  min-height: 54px;
}

.button-outline:hover {
  color: white;
}

.hero {
  background:
    radial-gradient(circle at 72% 15%, rgba(189, 109, 67, 0.11), transparent 26%),
    linear-gradient(122deg, var(--olive-950) 0%, var(--olive-900) 100%);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: calc(100svh - 96px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  border: 1px solid rgba(189, 109, 67, 0.22);
  border-radius: 50%;
  content: "";
  height: 480px;
  left: -270px;
  position: absolute;
  top: 140px;
  width: 480px;
}

.hero-content {
  align-self: center;
  padding: 76px clamp(28px, 4.6vw, 76px) 72px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--copper-light);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 14px;
  letter-spacing: 0.2em;
  margin: 0 0 27px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--copper);
  display: inline-block;
  height: 1px;
  width: 42px;
}

.eyebrow-dark {
  color: var(--copper);
}

.hero h1,
.section-heading h2,
.philosophy blockquote,
.information h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 0.96;
  max-width: 720px;
}

.hero h1::after {
  background: var(--copper);
  content: "";
  display: block;
  height: 2px;
  margin: 32px 0 23px;
  width: 66px;
}

.hero-copy {
  color: rgba(244, 239, 229, 0.76);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  margin-top: 34px;
}

.hero-actions p {
  align-items: center;
  color: rgba(244, 239, 229, 0.53);
  display: flex;
  font-size: 13px;
  gap: 9px;
  margin: 0;
}

.hero-actions p span {
  color: var(--copper-light);
  font-size: 21px;
}

.hero-signature {
  border-left: 1px solid var(--copper);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 48px;
  padding-left: 17px;
}

.hero-signature strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.hero-signature span {
  color: rgba(244, 239, 229, 0.52);
  font-size: 12px;
}

.hero-portrait {
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hero-portrait::before {
  background: var(--copper);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewX(-9deg) translateX(-44%);
  width: 28%;
  z-index: 1;
}

.portrait-frame {
  height: 100%;
  margin-left: 8%;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.portrait-frame::after {
  background:
    linear-gradient(90deg, rgba(16, 26, 20, 0.32), transparent 27%),
    linear-gradient(0deg, rgba(16, 26, 20, 0.35), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

.portrait-frame img {
  filter: saturate(0.88) sepia(0.05) contrast(1.03);
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.035);
  transition: transform 700ms ease;
  width: 100%;
}

.hero:hover .portrait-frame img {
  transform: scale(1.015);
}

.portrait-card {
  background: rgba(244, 239, 229, 0.94);
  bottom: 46px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 3px;
  left: 7%;
  min-width: 250px;
  padding: 18px 23px;
  position: absolute;
  z-index: 3;
}

.portrait-card span {
  font-family: var(--serif);
  font-size: 22px;
}

.portrait-card small {
  color: var(--copper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.line-art {
  bottom: -64px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 210px;
  left: -4%;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  transform: rotate(-19deg);
  z-index: 2;
}

.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(22px, 5vw, 78px);
}

.trust-strip div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  min-height: 96px;
  padding: 22px 28px;
}

.trust-strip div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.trust-strip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding: 130px clamp(24px, 7vw, 112px);
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1;
}

.about {
  background: var(--paper);
  display: grid;
  gap: clamp(50px, 10vw, 170px);
  grid-template-columns: 0.9fr 1.1fr;
}

.about-heading {
  max-width: 610px;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 66px);
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 21px;
  max-width: 650px;
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.32;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 22px;
  letter-spacing: 0.08em;
  margin-top: 18px;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.philosophy {
  background: var(--olive-900);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.philosophy-quote {
  align-items: flex-start;
  background:
    radial-gradient(circle at 12% 85%, rgba(189, 109, 67, 0.18), transparent 27%),
    var(--olive-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 100px clamp(32px, 7vw, 108px);
  position: relative;
}

.quote-mark {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 100px;
  height: 64px;
  line-height: 1;
}

.philosophy blockquote {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
  max-width: 770px;
}

.philosophy-quote > p {
  color: var(--copper-light);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-top: 34px;
  text-transform: uppercase;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 5vw, 82px);
}

.philosophy-points article {
  border-bottom: 1px solid rgba(244, 239, 229, 0.13);
  padding: 35px 0;
}

.philosophy-points article:last-child {
  border-bottom: 0;
}

.philosophy-points article > span {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.philosophy-points h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  margin: 10px 0 8px;
}

.philosophy-points p {
  color: rgba(244, 239, 229, 0.55);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 430px;
}

.procedures {
  background: var(--cream);
}

.procedures-intro {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.65fr;
  margin-bottom: 76px;
}

.procedures-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 7px;
  max-width: 490px;
}

.procedure-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.procedure-card {
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 34px;
  position: relative;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.procedure-card:hover {
  background: var(--olive-900);
  color: var(--cream);
  transform: translateY(-4px);
  z-index: 1;
}

.procedure-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.procedure-number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 22px;
}

.procedure-tag {
  border: 1px solid rgba(189, 109, 67, 0.35);
  border-radius: 99px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.procedure-card h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 37px);
  font-weight: 400;
  line-height: 1.05;
  margin: 49px 0 20px;
}

.procedure-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.procedure-card:hover > p {
  color: rgba(244, 239, 229, 0.62);
}

.procedure-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
}

.procedure-footer > span {
  color: var(--muted);
  font-size: 11px;
}

.procedure-card:hover .procedure-footer > span {
  color: rgba(244, 239, 229, 0.46);
}

.card-link {
  align-items: center;
  color: var(--copper);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--copper-light);
}

.journey {
  background: var(--olive-950);
  color: var(--cream);
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
}

.journey-heading {
  position: sticky;
  top: 145px;
  align-self: start;
}

.journey-heading h2 {
  color: var(--cream);
}

.journey-heading > p:last-child {
  color: rgba(244, 239, 229, 0.5);
  line-height: 1.6;
  margin-top: 26px;
  max-width: 420px;
}

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

.journey-list li {
  align-items: flex-start;
  border-top: 1px solid rgba(244, 239, 229, 0.15);
  display: grid;
  gap: 34px;
  grid-template-columns: 80px 1fr;
  padding: 44px 0;
}

.journey-list li:last-child {
  border-bottom: 1px solid rgba(244, 239, 229, 0.15);
}

.journey-list li > span {
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 25px;
}

.journey-list h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  margin: 0 0 8px;
}

.journey-list p {
  color: rgba(244, 239, 229, 0.52);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.faq {
  background: var(--paper);
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-heading h2 {
  font-size: clamp(50px, 6vw, 80px);
}

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

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  justify-content: space-between;
  list-style: none;
  padding: 28px 0;
}

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

.faq-list summary span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  transition: transform 200ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: -7px 0 27px;
  max-width: 680px;
}

.information {
  background: var(--olive-900);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.information-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 690px;
  padding: 90px clamp(30px, 7vw, 110px);
}

.information h2 {
  font-size: clamp(50px, 5.4vw, 80px);
  line-height: 0.98;
  max-width: 760px;
}

.information-main > p:not(.eyebrow) {
  color: rgba(244, 239, 229, 0.58);
  font-size: 16px;
  line-height: 1.7;
  margin: 30px 0 35px;
  max-width: 600px;
}

.information-cards {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.information-cards article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px clamp(30px, 6vw, 94px);
}

.information-cards article:first-child {
  border-bottom: 1px solid var(--line);
}

.information-cards article > span,
.footer-links > span,
.footer-nav > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.information-cards h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  margin: 15px 0 12px;
}

.information-cards p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 15px;
}

.information-cards a {
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 5px;
  width: fit-content;
}

.information-cards small {
  color: var(--muted);
  font-size: 11px;
}

footer {
  background: #0c140f;
  color: var(--cream);
  display: grid;
  gap: 45px;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  padding: 78px clamp(26px, 6vw, 96px) 34px;
}

.footer-brand p {
  color: rgba(244, 239, 229, 0.45);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 390px;
}

.footer-links,
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links > span,
.footer-nav > span {
  margin-bottom: 9px;
}

.footer-links a,
.footer-nav a {
  color: rgba(244, 239, 229, 0.62);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-nav a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 229, 0.1);
  color: rgba(244, 239, 229, 0.34);
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.07em;
  padding-top: 26px;
  text-transform: uppercase;
}

.floating-whatsapp {
  background: var(--copper);
  border: 0;
  border-radius: 99px;
  bottom: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: white;
  display: none;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  position: fixed;
  right: 18px;
  z-index: 40;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero-content {
    padding-left: 36px;
    padding-right: 28px;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 70px);
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about,
  .faq {
    gap: 70px;
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 76px;
    padding: 0 20px;
  }

  .site-header .brand {
    font-size: 29px;
  }

  .header-cta {
    font-size: 11px;
    min-height: 44px;
    padding: 0 13px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-portrait {
    min-height: 58svh;
  }

  .portrait-frame {
    margin: 0;
  }

  .portrait-frame img {
    object-position: center 25%;
  }

  .hero-portrait::before {
    height: 22%;
    left: 0;
    top: auto;
    bottom: 0;
    transform: skewY(-6deg) translateY(55%);
    width: 100%;
  }

  .portrait-card {
    bottom: 22px;
    left: 20px;
  }

  .hero-content {
    padding: 54px 22px 64px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 67px);
    max-width: 620px;
  }

  .hero-signature {
    margin-top: 36px;
  }

  .trust-strip {
    padding: 0;
  }

  .trust-strip div {
    min-height: 82px;
    padding: 18px;
  }

  .trust-strip div:first-child,
  .trust-strip div:nth-child(3) {
    border-left: 0;
  }

  .trust-strip span {
    font-size: 9px;
  }

  .section {
    padding: 88px 22px;
  }

  .about,
  .procedures-intro,
  .journey,
  .faq,
  .information,
  .philosophy {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 45px;
  }

  .about-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 34px;
  }

  .philosophy-quote {
    min-height: auto;
    padding: 85px 23px;
  }

  .philosophy blockquote {
    font-size: clamp(45px, 13vw, 64px);
  }

  .philosophy-points {
    padding: 44px 23px 60px;
  }

  .procedures-intro {
    gap: 30px;
    margin-bottom: 50px;
  }

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

  .procedure-card {
    min-height: 380px;
    padding: 29px;
  }

  .journey {
    gap: 50px;
  }

  .journey-heading {
    position: static;
  }

  .journey-list li {
    gap: 16px;
    grid-template-columns: 55px 1fr;
  }

  .faq {
    gap: 45px;
  }

  .faq-list summary {
    gap: 18px;
  }

  .information-main {
    min-height: auto;
    padding: 88px 22px;
  }

  .information-cards article {
    min-height: 330px;
    padding: 46px 24px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 66px 22px 92px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .header-cta {
    border: 0;
    color: var(--copper-light);
    padding: 0;
  }

  .hero-portrait {
    min-height: 56svh;
  }

  .portrait-card {
    min-width: 220px;
  }

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

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .section-heading h2 {
    font-size: clamp(45px, 13vw, 58px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
