@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --gold: #d4ad30;
  --ink: #362f3e;
  --plum: #422e4d;
  --cream: #fffffe;
  --background: #fffffe;
  --secondary: #f4f1f5;
  --muted: #6e6474;
  --border: #e5e0e8;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5rem; }
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,254,.97);
  backdrop-filter: blur(10px);
  transition: background-color 500ms, border-color 500ms, backdrop-filter 500ms;
}
.site-header.scrolled,
.site-header.open {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,254,.98);
  backdrop-filter: blur(10px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 52px;
  width: auto;
}
.desktop-nav { display: none; align-items: center; gap: 32px; }
.desktop-nav a {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .025em;
  transition: color 200ms;
}
.desktop-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; }
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.menu-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: transform 200ms, opacity 200ms;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-icon-close { opacity: 0; }
.site-header.open .menu-icon-open { opacity: 0; }
.site-header.open .menu-icon-close { opacity: 1; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--cream);
  padding: 16px 20px 32px;
}
.site-header.open .mobile-nav { display: block; }
.mobile-nav a:not(.button) {
  display: block;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
}
.mobile-cta { display: block; margin-top: 24px; text-align: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 16px 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background-color 200ms, color 200ms, border-color 200ms, transform 200ms;
  cursor: pointer;
}
.button-small { padding: 12px 24px; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--cream); }
.button-outline { border-color: rgba(255,255,254,.3); color: var(--cream); }
.button-outline:hover { border-color: var(--gold); color: var(--gold); }
.button-dark { background: var(--ink); color: var(--cream); padding: 20px 40px; flex-shrink: 0; }
.button-dark:hover { background: var(--plum); }
.button-outline-dark { border-color: rgba(54,47,62,.25); color: var(--ink); background: transparent; }
.button-outline-dark:hover { border-color: var(--gold); color: var(--plum); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--ink), rgba(54,47,62,.85), rgba(66,46,77,.4));
}
.hero-content {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 144px;
  padding-bottom: 64px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow span { width: 40px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.hero h1,
.section-heading h2,
.about h2,
.contact h2,
.cta-band h2 {
  margin: 24px 0 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
}
.hero h1 {
  max-width: 896px;
  margin-top: 32px;
  color: var(--cream);
  font-size: 48px;
  line-height: 1.04;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-copy {
  max-width: 576px;
  margin: 32px 0 0;
  color: rgba(255,255,254,.75);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.stats { border-bottom: 1px solid var(--border); background: var(--cream); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 20px;
  padding-right: 20px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 24px 40px 0;
  border-top: 1px solid var(--border);
}
.stat:nth-child(-n+2) { border-top: 0; }
.stat:nth-child(even) { border-left: 1px solid var(--border); padding-left: 24px; padding-right: 0; }
.stat span {
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section { padding: 96px 0; }
.services, .process { background: var(--background); }
.about, .testimonials { background: var(--secondary); }
.section-heading { max-width: 672px; }
.section-heading.split {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-heading.split > div { max-width: 672px; }
.section-heading h2,
.about h2,
.contact h2 { font-size: 40px; }
.section-heading > p:not(.eyebrow),
.section-heading.split > p {
  max-width: 384px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  gap: 56px 32px;
  margin-top: 64px;
}
.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms;
}
.service-image span {
  position: absolute;
  inset: 0;
  background: rgba(66,46,77,.25);
  transition: opacity 500ms;
}
.service-card:hover img { transform: scale(1.05); }
.service-card:hover .service-image span { opacity: 0; }
.service-card h3 {
  margin: 24px 0 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}
.service-card i {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 12px;
  background: var(--gold);
  transition: width 500ms;
}
.service-card:hover i { width: 96px; }
.service-card p,
.process-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}
.about-media { position: relative; }
.about-media div {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media > span {
  display: none;
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 128px;
  height: 128px;
  border: 1px solid var(--gold);
}
.body-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  color: rgba(54,47,62,.8);
  font-size: 15px;
  line-height: 1.7;
}
.body-copy p { margin: 0; }
.body-copy strong { color: var(--plum); font-weight: 500; }
.about-points {
  display: grid;
  gap: 32px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-points dt {
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 22px;
}
.about-points dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.essence {
  background: var(--plum);
  color: var(--cream);
}
.mission-grid {
  display: grid;
  gap: 48px;
  margin-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,254,.15);
}
.mission-grid h2,
.values > h2 {
  margin: 0;
  color: rgba(255,255,254,.5);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.mission-grid p {
  margin: 20px 0 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
}
.values { margin-top: 56px; }
.values ul {
  display: grid;
  gap: 40px 48px;
  margin-top: 32px;
}
.values li {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,254,.15);
}
.values h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}
.values p {
  margin: 12px 0 0;
  color: rgba(255,255,254,.7);
  font-size: 14px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  gap: 40px;
  margin-top: 64px;
}
.process-grid li {
  padding-top: 24px;
  border-top: 1px solid rgba(66,46,77,.2);
}
.process-grid span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .2em;
}
.process-grid h3 {
  margin: 16px 0 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  margin-top: 64px;
}
.testimonials-grid li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--background);
  padding: 32px;
}
.testimonials-grid p {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
}
.testimonials-grid li > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonials-grid span { width: 32px; height: 1px; background: var(--gold); }
.testimonials-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.testimonials-grid small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.cta-band { background: var(--gold); padding: 80px 0; }
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cta-inner > div { max-width: 672px; }
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
}
.cta-band p {
  margin: 20px 0 0;
  color: rgba(54,47,62,.75);
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact-grid {
  display: grid;
  gap: 64px;
}
.contact h2 { color: var(--cream); }
.contact-copy {
  max-width: 448px;
  margin: 24px 0 0;
  color: rgba(255,255,254,.7);
  font-size: 15px;
  line-height: 1.7;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.contact-list li { display: flex; gap: 16px; }
.contact-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--gold);
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-icon.whatsapp-svg { color: #25d366; }
.contact-icon.whatsapp-svg svg,
.whatsapp-float svg { fill: currentColor; stroke: none; }
.contact-list p {
  margin: 0;
  color: rgba(255,255,254,.5);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-list a {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,254,.8);
  font-size: 15px;
  line-height: 1.7;
  transition: color 200ms;
}
.contact-list li:first-child a {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 28px;
}
.contact-list a:hover { color: var(--gold); }
.contact-panel {
  border: 1px solid rgba(255,255,254,.15);
  background: rgba(66,46,77,.3);
  padding: 32px;
}
.contact-panel h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}
.contact-panel > p {
  margin: 8px 0 0;
  color: rgba(255,255,254,.6);
  font-size: 14px;
}
.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  color: rgba(255,255,254,.6);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,254,.25);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  padding: 12px 0;
  font-size: 15px;
  outline: none;
}
.field select option { background: var(--ink); color: var(--cream); }
.field textarea { resize: none; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,254,.35); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }

.footer {
  background: var(--plum);
  color: var(--cream);
}
.footer-main {
  display: grid;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.footer-main img {
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-main p {
  max-width: 384px;
  margin: 24px 0 0;
  color: rgba(255,255,254,.65);
  font-size: 14px;
  line-height: 1.7;
}
.footer h2 {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.footer a {
  color: rgba(255,255,254,.7);
  font-size: 14px;
  transition: color 200ms;
}
.footer a:hover { color: var(--gold); }
.footer-info,
.footer-legal { border-top: 1px solid rgba(255,255,254,.15); }
.footer-info .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-info p {
  margin: 0 0 8px;
  color: rgba(255,255,254,.7);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-legal { border-color: rgba(255,255,254,.1); }
.footer-legal .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-legal p {
  margin: 0;
  color: rgba(255,255,254,.45);
  font-size: 11px;
  line-height: 1.7;
}
.footer-legal .copyright {
  margin-top: 24px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-legal a { font-size: inherit; color: rgba(255,255,254,.68); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37,211,102,.32);
  transition: transform 200ms;
}
.whatsapp-float svg { width: 31px; height: 31px; }
.whatsapp-float:hover { transform: scale(1.05); }

.consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: rgba(255,255,254,.98);
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(54,47,62,.22);
}
.consent-banner.visible { display: flex; }
.consent-banner h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
}
.consent-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.consent-banner a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions .button { padding: 12px 18px; }

.legal-page { background: var(--background); color: var(--ink); }
.legal-header {
  background: var(--ink);
  color: var(--cream);
  padding: 32px 0;
}
.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-header img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.legal-header a { color: rgba(255,255,254,.75); font-size: 13px; }
.legal-header a:hover { color: var(--gold); }
.legal-content {
  max-width: 880px;
  padding-top: 88px;
  padding-bottom: 96px;
}
.legal-content .eyebrow { margin-bottom: 24px; }
.legal-content h1 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 300;
  line-height: 1.05;
}
.legal-content h2 {
  margin: 44px 0 12px;
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}
.legal-content p,
.legal-content li {
  color: rgba(54,47,62,.78);
  font-size: 15px;
  line-height: 1.75;
}
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content .updated { margin-top: 18px; color: var(--muted); font-size: 13px; }

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; align-items: center; }
  .services-grid,
  .about-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .values ul,
  .process-grid,
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .container { padding-left: 40px; padding-right: 40px; }
  .header-inner { height: 104px; }
  .brand img { height: 78px; }
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .hero-content { padding-bottom: 96px; }
  .hero h1 { font-size: 72px; }
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-left: 40px;
    padding-right: 40px;
  }
  .stat {
    border-top: 0;
    border-left: 1px solid var(--border);
    padding: 56px 32px;
  }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat:last-child { padding-right: 0; }
  .stat span { font-size: 48px; }
  .section { padding: 128px 0; }
  .section-heading.split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .section-heading h2,
  .about h2,
  .contact h2,
  .cta-band h2 { font-size: 52px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
  .about-media > span { display: block; }
  .mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
  .mission-grid p { font-size: 40px; }
  .values ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .testimonials-grid li { padding: 40px; }
  .cta-band { padding: 96px 0; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 96px; }
  .contact-panel { padding: 40px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; padding-top: 80px; padding-bottom: 80px; }
  .footer-info .container { flex-direction: row; justify-content: space-between; }
  .footer-info .container > div:last-child { text-align: right; }
}

@media (max-width: 1023px) {
  .header-cta { display: none !important; }
}

@media (max-width: 720px) {
  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }
  .consent-actions { width: 100%; }
  .consent-actions .button { flex: 1; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 42px; }
  .section-heading h2,
  .about h2,
  .contact h2,
  .cta-band h2 { font-size: 36px; }
  .button { width: 100%; padding-left: 18px; padding-right: 18px; }
  .header-cta { display: none; }
  .legal-content h1 { font-size: 44px; }
}
