:root {
  --cream: #f7f3ed;
  --cream-2: #f1ece5;
  --paper: #fbfaf8;
  --ink: #151515;
  --muted: #54504b;
  --line: #cfc7bc;
  --dark: #111111;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

.site-header {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .30em;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

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

.button-dark {
  background: var(--dark);
  color: white;
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 590px;
  background: var(--cream);
}

.hero-copy {
  padding: 92px 9vw 84px max(48px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1,
.section-inner h2,
.cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(54px, 5.7vw, 86px);
  line-height: .98;
  letter-spacing: -.035em;
}

.hero h1 em,
.section-inner h2 em {
  font-weight: 400;
}

.mini-rule,
.center-rule,
.pillar-rule,
.footer-rule {
  display: block;
  height: 1px;
  background: currentColor;
}

.mini-rule {
  width: 48px;
  margin: 34px 0 28px;
}

.hero-copy p {
  max-width: 335px;
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-image {
  min-height: 590px;
}

.section-inner {
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.section-inner.narrow {
  width: min(690px, calc(100% - 56px));
}

.section-soft {
  background: var(--cream-2);
  padding: 76px 0 74px;
}

.eyebrow {
  margin: 0 0 16px !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink) !important;
}

.section-inner h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.center-rule {
  width: 38px;
  margin: 22px auto 22px;
}

.about .section-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #3d3a36;
}

.framework {
  background: var(--paper);
  padding: 72px 0 76px;
}

.pillars {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  min-width: 0;
  padding: 0 48px;
}

.pillar + .pillar {
  border-left: 1px solid #ded8cf;
}

.pillar h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 18px;
}

.pillar-rule {
  width: 36px;
  margin: 22px auto 19px;
}

.pillar p {
  margin: 0 auto;
  max-width: 225px;
  font-size: 14px;
  line-height: 1.65;
  color: #34322f;
}

.final-cta {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
  color: #f6f1e9;
}

.cta-image {
  min-height: 410px;
}

.cta-copy {
  min-height: 410px;
  padding: 70px clamp(44px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.mini-rule.light {
  background: #efe8de;
  margin: 28px 0 28px;
}

.site-footer {
  min-height: 145px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.footer-mark {
  font-size: 23px;
}

.domain {
  font-size: 11px;
  letter-spacing: .28em;
}

.footer-rule {
  width: 40px;
  margin-top: 4px;
}

/* classy fade-up animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1);
}

.reveal-delay {
  transition-delay: .12s;
}

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

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 36px);
    min-height: 78px;
  }

  .wordmark {
    font-size: 19px;
    letter-spacing: .24em;
  }

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

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

  .hero-copy {
    padding: 72px 28px 60px;
  }

  .hero-image {
    min-height: 510px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 44px;
  }

  .pillar {
    padding: 0 26px;
  }

  .pillar + .pillar {
    border-left: 0;
    border-top: 1px solid #ded8cf;
    padding-top: 38px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .cta-image {
    min-height: 340px;
  }

  .cta-copy {
    min-height: 340px;
    padding: 58px 28px 64px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 72px;
  }

  .wordmark {
    font-size: 17px;
    letter-spacing: .18em;
  }

  .header-cta {
    padding: 0 12px;
    letter-spacing: .12em;
  }

  .hero-copy {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-image {
    min-height: 430px;
  }

  .section-soft,
  .framework {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section-inner,
  .section-inner.narrow {
    width: calc(100% - 40px);
  }

  .section-inner h2 {
    font-size: 35px;
  }

  .final-cta h2 {
    font-size: 39px;
  }

  .site-footer {
    min-height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}

.what-i-do { background:#f8f6f2; padding:72px 0 78px; }
.services-inner { width:min(1180px,calc(100% - 56px)); }
.services-grid { margin-top:48px; display:grid; grid-template-columns:repeat(5,1fr); }
.service-item { min-width:0; padding:0 30px; text-align:center; }
.service-item + .service-item { border-left:1px solid #ded8cf; }
.service-icon { width:66px; height:66px; margin:0 auto 25px; border-radius:50%; background:#efebe5; display:flex; align-items:center; justify-content:center; font-family:Georgia,"Times New Roman",serif; font-size:25px; line-height:1; }
.dots-icon { font-family:Arial,Helvetica,sans-serif; font-size:18px; letter-spacing:.15em; }
.service-item h3 { min-height:44px; margin:0; font-family:Georgia,"Times New Roman",serif; font-size:16px; line-height:1.35; font-weight:400; text-transform:uppercase; letter-spacing:.20em; }
.service-rule { display:block; width:34px; height:1px; margin:18px auto; background:currentColor; }
.service-item p { max-width:190px; margin:0 auto; color:#34322f; font-size:13px; line-height:1.6; }

@media (max-width:860px) {
  .services-grid { grid-template-columns:1fr 1fr; }
  .service-item { padding:34px 28px; }
  .service-item + .service-item { border-left:0; }
  .service-item:nth-child(even) { border-left:1px solid #ded8cf; }
  .service-item:nth-child(n+3) { border-top:1px solid #ded8cf; }
  .service-item:last-child { grid-column:1/-1; border-left:0; }
}
@media (max-width:520px) {
  .what-i-do { padding:62px 0; }
  .services-inner { width:calc(100% - 40px); }
  .services-grid { grid-template-columns:1fr; margin-top:36px; }
  .service-item { padding:34px 18px; }
  .service-item:nth-child(even), .service-item:last-child { border-left:0; }
  .service-item:nth-child(n+2) { border-top:1px solid #ded8cf; }
  .service-item:last-child { grid-column:auto; }
  .service-item h3 { min-height:0; }
}


/* --- PRÉSENCE refinements: hero line + service icons/layout --- */
@media (min-width: 861px) {
  .hero h1 em {
    white-space: nowrap;
  }
}

/* Keep the hero elegant at medium desktop widths without forcing the italic line to wrap. */
@media (min-width: 861px) and (max-width: 1120px) {
  .hero-copy {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 58px);
  }
}

/* Replace the text-glyph service icons with real, swappable SVG assets. */
.service-icon {
  overflow: hidden;
}

.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* Better service typography and spacing. */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item h3 {
  min-height: 46px;
  max-width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .16em;
}

.service-item p {
  max-width: 185px;
}

/* Five columns only when there is genuinely enough room. */
@media (min-width: 1121px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Medium desktop/tablet: 3 + 2 layout, so the copy never crashes together. */
@media (min-width: 861px) and (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0;
  }

  .service-item {
    padding: 34px 26px;
  }

  .service-item + .service-item {
    border-left: 0;
  }

  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(5) {
    border-left: 1px solid #ded8cf;
  }

  .service-item:nth-child(n+4) {
    border-top: 1px solid #ded8cf;
  }

  .service-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .service-item:nth-child(5) {
    grid-column: 2 / 3;
  }
}

@media (max-width: 520px) {
  .hero h1 em {
    white-space: normal;
  }

  .service-icon img {
    width: 32px;
    height: 32px;
  }
}


/* --- Final PRÉSENCE refinements --- */

/* Slightly larger section eyebrows on desktop/tablet. */
@media (min-width: 861px) {
  .eyebrow {
    font-size: 12px !important;
    letter-spacing: .20em;
  }
}

/* Center the second row of the 3+2 service layout. */
@media (min-width: 861px) and (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .service-item:nth-child(2) {
    grid-column: 3 / 5;
  }

  .service-item:nth-child(3) {
    grid-column: 5 / 7;
  }

  .service-item:nth-child(4) {
    grid-column: 2 / 4;
  }

  .service-item:nth-child(5) {
    grid-column: 4 / 6;
  }

  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(5) {
    border-left: 1px solid #ded8cf;
  }

  .service-item:nth-child(4) {
    border-left: 0;
  }
}

/* Mobile hero: keep "first impression." together on one line. */
@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(40px, 12.8vw, 46px);
    line-height: 1;
  }

  .hero h1 em {
    white-space: nowrap;
  }
}
