:root {
  --ink: #201716;
  --espresso: #3b2722;
  --muted: #716764;
  --paper: #fffaf7;
  --shell: #f6eee9;
  --blush: #f2d7df;
  --petal: #fbf0f2;
  --pink: #d94f8e;
  --wine: #8d3156;
  --teal: #1d665f;
  --sky: #dceff0;
  --gold: #b98943;
  --line: rgba(32, 23, 22, 0.14);
  --shadow: 0 26px 80px rgba(54, 35, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 247, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 6px;
  padding: 3px 10px 3px 3px;
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.62);
  text-decoration: none;
}

.brand-copy {
  display: grid;
  gap: 3px;
  align-items: center;
}

.brand-name {
  color: var(--wine);
  font-family: SignPainter, "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.26rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.012em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand-tagline {
  color: var(--espresso);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.78;
}

.brand-mark {
  display: block;
  width: 70px;
  height: 70px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(54, 35, 31, 0.16));
}

.nav {
  gap: clamp(12px, 3vw, 30px);
  color: var(--espresso);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--wine);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 122px clamp(20px, 6vw, 84px) 92px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.72) 0%, rgba(28, 23, 21, 0.5) 42%, rgba(28, 23, 21, 0.1) 100%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.1) 0%, rgba(32, 23, 22, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: white;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6e7;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 12.5ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 6.4vw, 5.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(32, 23, 22, 0.24);
}

.button.whatsapp {
  color: white;
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(29, 102, 95, 0.2);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.54);
}

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

.section {
  scroll-margin-top: 92px;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 84px);
}

.intro,
.advisor,
.approach,
.contact,
.important-info {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 0;
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.4vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy p,
.advisor-copy p,
.contact p,
.important-copy p,
.steps p,
.journey-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy p:last-child,
.advisor-copy p:last-child,
.important-copy p:last-child,
.journey-card p,
.steps p {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.journeys {
  background: var(--shell);
}

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

.journey-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(54, 35, 31, 0.08);
}

.journey-image {
  width: 100%;
  height: 116px;
  object-fit: cover;
  display: block;
}

.service-number,
.steps span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
}

.service-number {
  margin: 18px 24px 8px;
}

h3 {
  margin: 0 24px 10px;
  font-size: 1.28rem;
}

.journey-card p {
  padding: 0 24px;
}

.advisor {
  background: white;
}

.advisor-intro {
  display: grid;
  justify-items: start;
}

.advisor-portrait {
  width: min(100%, 260px);
  height: auto;
  margin-top: 24px;
  border-radius: 0;
  box-shadow: none;
}

.advisor-copy {
  max-width: 720px;
}

.approach {
  grid-template-columns: minmax(220px, 0.68fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 4.4vw, 64px);
  background: var(--shell);
}

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

.steps article {
  padding: 22px;
  border-left: 5px solid var(--teal);
  background: var(--petal);
}

.steps h3 {
  margin-top: 26px;
  margin-right: 0;
  margin-left: 0;
}

.statement {
  color: white;
  background: var(--espresso);
}

blockquote {
  max-width: 1040px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.1vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact {
  align-items: center;
  background: linear-gradient(135deg, white 0%, var(--blush) 100%);
}

.important-info {
  display: block;
  padding-top: clamp(14px, 2vw, 22px);
  padding-bottom: clamp(14px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.54);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.important-info h2 {
  max-width: none;
  margin: 0 auto 12px;
  color: var(--espresso);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.12;
}

.important-copy {
  max-width: 920px;
  margin: 0 auto;
}

.important-info .section-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.important-copy p {
  color: rgba(113, 103, 100, 0.88);
  font-size: 0.72rem;
  line-height: 1.42;
}

.important-copy p + p {
  margin-top: 8px;
}

.contact-panel {
  justify-content: flex-start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.8);
  box-shadow: var(--shadow);
}

.contact-link {
  display: block;
  width: 100%;
  padding: 14px 0;
  color: var(--wine);
  font-size: 1.16rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.wide {
  width: 100%;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(20px, 6vw, 84px);
  color: var(--muted);
  font-size: 0.95rem;
  background: white;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-brand a {
  color: inherit;
  text-decoration: none;
}

.footer-brand a:hover {
  color: var(--wine);
}

.footer-placeholder {
  color: rgba(113, 103, 100, 0.72);
  font-style: italic;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  background: var(--paper);
  transition: transform 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.social-link:hover {
  color: var(--teal);
  border-color: rgba(29, 102, 95, 0.28);
  transform: translateY(-1px);
}

.social-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-top {
  margin-left: 6px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .brand-tagline {
    max-width: 220px;
    font-size: 0.5rem;
    letter-spacing: 0.075em;
    white-space: normal;
  }

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 88vh;
    padding: 74px 20px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 18, 16, 0.72) 0%, rgba(20, 18, 16, 0.52) 62%, rgba(20, 18, 16, 0.68) 100%);
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .intro,
  .advisor,
  .approach,
  .contact,
  .important-info,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 20px;
  }

  .section-heading {
    display: block;
  }

  .journey-card {
    min-height: 260px;
  }

  .advisor-portrait {
    width: min(100%, 240px);
    margin-top: 18px;
  }

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

  .footer-brand,
  .footer-actions {
    width: 100%;
  }

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