@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #fff9f0;
  --sand: #f5ebdd;
  --plum: #351d31;
  --terracotta: #b85c46;
  --terracotta-dark: #984733;
  --olive: #78806a;
  --ink: #2f2830;
  --white: #ffffff;
  --font-manrope: "Manrope", Arial, Helvetica, sans-serif;
  --font-fraunces: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-manrope);
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d87960; outline-offset: 4px; }

.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  padding: 0 clamp(28px, 4vw, 72px);
  background: var(--cream);
  position: relative;
  z-index: 10;
}
.brand {
  font: 600 clamp(34px, 3vw, 47px)/1 var(--font-fraunces);
  color: var(--plum);
  letter-spacing: -2px;
}
.brand span { color: var(--terracotta); }
nav { display: flex; gap: clamp(24px, 3vw, 50px); font-weight: 700; font-size: 15px; }
nav a, footer a { position: relative; }
nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0;
  height: 2px; background: var(--terracotta); transition: width .25s ease;
}
nav a:hover::after { width: 100%; }
.header-cta {
  justify-self: end;
  padding: 14px 25px;
  border: 1px solid var(--terracotta);
  color: var(--terracotta-dark);
  border-radius: 4px;
  font-weight: 800;
  transition: .25s ease;
}
.header-cta:hover { color: var(--white); background: var(--terracotta); }

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 57% 43%;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--cream);
}
.hero-copy {
  padding: clamp(60px, 7vh, 96px) 4vw 44px;
  max-width: 880px;
  align-self: center;
}
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--olive); font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow {
  background: var(--olive); color: white; border-radius: 999px;
  padding: 10px 17px; letter-spacing: .02em; text-transform: none;
}
.hero h1 {
  max-width: 760px;
  margin: 30px 0 22px;
  font: 600 clamp(52px, 5vw, 78px)/.98 var(--font-fraunces);
  letter-spacing: -3px;
  color: var(--plum);
}
.hero h1 strong { display: block; color: var(--terracotta); font-weight: 600; }
.hero-copy > p {
  max-width: 620px; margin: 0;
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 28px; border: 1px solid var(--plum);
  border-radius: 4px; font-weight: 800; transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { color: white; background: var(--terracotta); border-color: var(--terracotta); }
.primary:hover { background: var(--plum); border-color: var(--plum); }
.secondary:hover { background: var(--sand); }
.hero-image {
  grid-column: 2; grid-row: 1 / span 2;
  min-height: 670px;
  position: relative;
  overflow: hidden;
  border-radius: 48% 0 0 46% / 32% 0 0 48%;
  background: var(--terracotta);
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  opacity: 0; transition: opacity .7s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-control {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%; color: white; background: rgba(62,37,56,.68);
  font: 400 34px/1 Georgia, serif; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.carousel-control:hover { background: var(--terracotta); transform: translateY(-50%) scale(1.05); }
.carousel-control:focus-visible, .carousel-dot:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.carousel-prev { left: 22px; }
.carousel-next { right: 22px; }
.carousel-dots {
  position: absolute; z-index: 2; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; gap: 10px; padding: 9px 12px; border-radius: 20px;
  background: rgba(62,37,56,.5);
}
.carousel-dot {
  width: 10px; height: 10px; padding: 0; border: 1px solid white;
  border-radius: 50%; background: transparent; cursor: pointer;
}
.carousel-dot.is-active { background: white; }
.trust-strip {
  width: min(100%, 900px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--plum); color: white; padding: 25px 4vw;
}
.trust-strip div { display: flex; align-items: center; gap: 15px; border-right: 1px solid #76546d; }
.trust-strip div:last-child { border: 0; padding-left: 28px; }
.trust-strip div:nth-child(2) { padding-left: 28px; }
.trust-strip span {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; background: var(--olive); font-size: 25px;
}
.trust-strip p { margin: 0; line-height: 1.45; font-weight: 700; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.intro { padding-block: 130px; }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; margin-top: 26px; }
h2 {
  margin: 0; color: var(--plum);
  font: 600 clamp(40px, 4.2vw, 62px)/1.08 var(--font-fraunces);
  letter-spacing: -2px;
}
.intro-grid p { font-size: 18px; line-height: 1.8; margin: 0 0 20px; }
.services { padding-bottom: 130px; }
.section-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 8vw; align-items: end; margin-bottom: 55px; }
.section-heading h2 { margin-top: 16px; }
.section-heading > p { line-height: 1.8; font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dbc9b7; border-left: 1px solid #dbc9b7; }
.services-grid article {
  min-height: 310px; padding: 34px;
  border-right: 1px solid #dbc9b7; border-bottom: 1px solid #dbc9b7;
  transition: background .25s ease, transform .25s ease;
}
.services-grid article:hover { background: white; transform: translateY(-4px); }
.services-grid article > span { color: var(--terracotta); font: 600 22px var(--font-fraunces); }
.services-grid h3, .process-grid h3, .content-grid h3 {
  color: var(--plum); font: 600 27px/1.15 var(--font-fraunces); margin: 45px 0 14px;
}
.services-grid p, .process-grid p { line-height: 1.7; font-size: 15px; }
.services-grid a { display: inline-block; margin-top: 18px; font-weight: 800; color: var(--terracotta-dark); }

.audience { background: var(--plum); color: white; padding-block: 120px; }
.audience-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; align-items: center; }
.light { color: #c5bea7; }
.audience h2 { color: white; margin: 18px 0 28px; }
.audience p { max-width: 650px; line-height: 1.8; font-size: 18px; }
.audience ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid #76546d; }
.audience li { display: flex; align-items: center; gap: 28px; padding: 25px 4px; border-bottom: 1px solid #76546d; font-size: 20px; font-weight: 700; }
.audience li span { color: #d87960; font: 600 18px var(--font-fraunces); }

.process { padding-block: 130px; }
.process > h2 { margin-top: 18px; max-width: 700px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 70px; }
.process-grid article { position: relative; padding-top: 38px; border-top: 2px solid var(--terracotta); }
.process-grid article > span {
  position: absolute; top: -21px; left: 0; width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 50%; background: var(--terracotta); color: white; font-weight: 800;
}
.process-grid h3 { margin-top: 20px; }

.expertise { padding-bottom: 130px; }
.expertise-card {
  padding: clamp(45px, 7vw, 90px);
  background: var(--terracotta); color: white;
  border-radius: 220px 20px 220px 20px;
}
.expertise-card h2 { color: white; max-width: 850px; margin: 18px 0 30px; }
.expertise-card > p { max-width: 760px; font-size: 18px; line-height: 1.8; }
blockquote {
  margin: 45px 0 0; padding: 24px 0 0; border-top: 1px solid #eaa28f;
  max-width: 900px; font: 500 26px/1.4 var(--font-fraunces);
}

.content { padding-bottom: 130px; }
.content .section-heading > a { justify-self: end; color: var(--terracotta-dark); font-weight: 800; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-grid article { min-height: 320px; background: var(--sand); padding: 34px; display: flex; flex-direction: column; }
.content-grid span { color: var(--olive); letter-spacing: .1em; font-size: 11px; font-weight: 800; }
.content-grid h3 { margin-top: 65px; font-size: 29px; }
.content-grid a { margin-top: auto; color: var(--terracotta-dark); font-weight: 800; }

.contact { padding-block: 110px; background: var(--plum); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 10vw; align-items: center; }
.contact h2 { color: white; margin-top: 18px; }
.contact-box { background: var(--cream); color: var(--ink); padding: 42px; border-radius: 6px; }
.contact-box p { margin-top: 0; line-height: 1.7; }
.contact-button { width: 100%; border: 0; color: white; background: var(--terracotta); margin: 18px 0; }
.contact-box small { display: block; text-align: center; color: #756d72; }

footer { background: #251421; color: #eadfd4; padding: 70px 4vw 26px; }
.footer-inner { width: min(1180px, 100%); margin: auto; display: grid; grid-template-columns: 1.5fr .8fr .8fr; gap: 50px; }
.footer-brand { color: white; }
.footer-inner > div { display: flex; flex-direction: column; gap: 13px; }
.footer-inner strong { color: white; margin-bottom: 8px; }
.footer-inner p { color: #bfb2bb; }
.footer-inner a:not(.brand):hover { color: #e78c73; }
.footer-bottom { width: min(1180px, 100%); margin: 55px auto 0; padding-top: 22px; border-top: 1px solid #583d51; display: flex; justify-content: space-between; font-size: 12px; color: #a997a4; }

.contact-modal {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(37, 20, 33, .35);
}
.contact-modal::backdrop { background: rgba(37, 20, 33, .76); backdrop-filter: blur(5px); }
.contact-modal[open] { animation: modal-in .25s ease both; }
.modal-panel { position: relative; padding: clamp(30px, 5vw, 58px); }
.modal-close {
  position: absolute; z-index: 2; top: 18px; right: 18px;
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  color: var(--plum); background: var(--sand);
  font: 400 30px/1 var(--font-manrope); cursor: pointer;
}
.modal-close:hover { color: white; background: var(--terracotta); }
.contact-modal h2 { margin: 14px 45px 16px 0; font-size: clamp(36px, 5vw, 52px); }
.modal-intro { max-width: 650px; margin: 0 0 32px; line-height: 1.7; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form label > span { font-size: 13px; font-weight: 800; color: var(--plum); }
.contact-form label small { color: #81777d; font-weight: 500; }
.form-wide { grid-column: 1 / -1; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1px solid #d7c8bc; border-radius: 6px;
  color: var(--ink); background: white; font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 3px solid rgba(184, 92, 70, .22); border-color: var(--terracotta);
}
.consent-field {
  flex-direction: row !important; align-items: flex-start;
  gap: 12px !important; margin: 24px 0;
}
.consent-field input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--terracotta); flex: 0 0 auto; }
.consent-field span { line-height: 1.55; font-weight: 500 !important; color: #5f555b !important; }
.form-submit {
  width: 100%; border: 0; color: white; background: var(--terracotta);
  font: 800 15px var(--font-manrope); cursor: pointer;
}
.form-submit:hover { background: var(--plum); }
.modal-success { padding-block: clamp(35px, 8vh, 80px); text-align: center; }
.modal-success h2 { margin: 18px 0; }
.modal-success > p:not(.section-kicker) { max-width: 520px; margin: 0 auto 30px; font-size: 18px; line-height: 1.7; }
.success-icon {
  width: 72px; height: 72px; margin: 0 auto 24px;
  display: grid; place-items: center; border-radius: 50%;
  color: white; background: var(--olive); font-size: 34px; font-weight: 800;
}
body.modal-open { overflow: hidden; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 480px auto; }
  .hero-image { grid-column: 1; grid-row: 2; border-radius: 0; min-height: 0; }
  .trust-strip { grid-row: 3; }
  .intro-grid, .audience-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { height: 76px; padding-inline: 20px; }
  .brand { font-size: 34px; }
  .header-cta { font-size: 12px; padding: 11px 13px; }
  .hero { min-height: 0; }
  .hero-copy { padding: 48px 24px 42px; }
  .hero h1 { font-size: clamp(45px, 13vw, 58px); letter-spacing: -2px; }
  .hero-actions { flex-direction: column; }
  .hero-image { height: 380px; }
  .carousel-control { width: 40px; height: 40px; font-size: 29px; }
  .carousel-prev { left: 14px; }
  .carousel-next { right: 14px; }
  .carousel-dots { bottom: 16px; }
  .trust-strip { grid-template-columns: 1fr; padding: 14px 24px; }
  .trust-strip div, .trust-strip div:nth-child(2), .trust-strip div:last-child { border-right: 0; border-bottom: 1px solid #76546d; padding: 12px 0; }
  .trust-strip div:last-child { border: 0; }
  .intro, .process { padding-block: 90px; }
  .services, .expertise, .content { padding-bottom: 90px; }
  .services-grid, .content-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid { gap: 50px; }
  .expertise-card { border-radius: 90px 8px 90px 8px; padding: 55px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .contact-modal { width: min(100% - 16px, 760px); max-height: calc(100vh - 16px); }
  .modal-panel { padding: 54px 22px 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 17px; }
  .form-wide { grid-column: auto; }
  .contact-modal h2 { margin-right: 0; font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
