:root {
  --bone: #faf8f5;
  --bone-deep: #f2ede6;
  --ink: #1a1a18;
  --ink-soft: #4a4844;
  --ink-mute: #7a766f;
  --clay: #9c5240;
  --clay-deep: #7d4133;
  --rule: #e2dbd1;
  --max: 1120px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--ink);
  color: var(--bone);
  padding: 10px 14px;
  z-index: 100;
}

/* Navigation */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}

.brand__merch {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand__rule {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--clay);
}

.brand__method {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.brand__lockup--footer {
  gap: 5px;
}

.brand__lockup--footer .brand__merch {
  color: var(--bone);
  font-size: 18px;
}

.brand__lockup--footer .brand__method {
  color: rgba(250, 248, 245, 0.55);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav__links a:hover { color: var(--ink); }

.nav__links a.btn--nav {
  background: var(--clay);
  color: var(--bone);
}

.nav__links a.btn--nav:hover {
  background: var(--ink);
  color: var(--bone);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: background 0.18s ease;
}
.btn:hover { background: var(--clay-deep); }

.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn--light {
  background: var(--bone);
  color: var(--ink);
}
.btn--light:hover { background: #fff; }

.link-arrow {
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  color: var(--ink-soft);
}
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { color: var(--clay); border-color: var(--clay); }

.link-arrow--light { color: rgba(250, 248, 245, 0.82); border-color: rgba(250, 248, 245, 0.4); }
.link-arrow--light:hover { color: #fff; border-color: #fff; }

/* Typography helpers */

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 20px;
}

.eyebrow--light { color: rgba(250, 248, 245, 0.65); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.h2--wide { max-width: 18ch; }

.prose p { margin: 0 0 18px; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

/* Hero */

.hero {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 12vw, 120px) 0 clamp(56px, 8vw, 88px);
  color: var(--bone);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: brightness(1.08) saturate(0.9) contrast(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 26, 24, 0.78) 0%, rgba(26, 26, 24, 0.48) 52%, rgba(26, 26, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(26, 26, 24, 0.5) 0%, rgba(26, 26, 24, 0.12) 55%, rgba(26, 26, 24, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow--hero {
  color: rgba(250, 248, 245, 0.72);
}

.hero__h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 7.2vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 15ch;
  color: var(--bone);
}

.hero__h1 span { display: block; }
.hero__h1 span:nth-child(2) { color: #e0b4a6; }

.hero--golf .hero__media img {
  object-position: center 40%;
  filter: brightness(1.02) saturate(1.05) contrast(1.06);
}

.hero--golf .hero__veil {
  background:
    linear-gradient(90deg, rgba(26, 26, 24, 0.72) 0%, rgba(26, 26, 24, 0.38) 55%, rgba(26, 26, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(26, 26, 24, 0.42) 0%, rgba(26, 26, 24, 0.1) 58%, rgba(26, 26, 24, 0.22) 100%);
}

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 36px;
}

.lede--hero {
  color: rgba(250, 248, 245, 0.84);
}

.lede--hero a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 248, 245, 0.45);
}

.lede--hero a:hover {
  border-color: rgba(250, 248, 245, 0.9);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn--hero {
  background: var(--clay);
  color: var(--bone);
}
.btn--hero:hover { background: var(--bone); color: var(--ink); }

.link-arrow--hero {
  color: rgba(250, 248, 245, 0.88);
  border-color: rgba(250, 248, 245, 0.4);
}
.link-arrow--hero:hover {
  color: #fff;
  border-color: #fff;
}

.hero__note {
  margin: 24px 0 0;
  font-size: 14.5px;
  color: rgba(250, 248, 245, 0.55);
}

/* Full-bleed photography — shared look */

.photo-bleed {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.photo-bleed img {
  display: block;
  width: 100%;
  height: min(58vh, 680px);
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.06) saturate(0.88) contrast(1.02);
}

.photo-bleed--tall img {
  height: min(48vh, 520px);
  object-position: center 35%;
}

/* Difference */

.diff__lede {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 0 36px;
}

.diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.diff__col {
  background: var(--bone);
  padding: 32px 28px 36px;
}

.diff__col--you {
  background: var(--bone-deep);
}

.diff__col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 16px;
}

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

.diff__col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 15.5px;
}

.diff__col--you li {
  color: var(--ink);
}

.diff__col li:last-child { border-bottom: none; }

.diff__note {
  margin: 28px 0 0;
  max-width: 58ch;
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
}

/* About with headshot */

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.about__photo {
  margin: 28px 0 0;
}

.about__photo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 4px;
}

/* Capability strip */

.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone-deep);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.strip__inner p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Sections */

.section { padding: clamp(64px, 9vw, 108px) 0; }

.section--tint {
  background: var(--bone-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

/* Method pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 44px;
}

.pillar {
  background: var(--bone);
  padding: 36px 30px 38px;
}

.pillar__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--clay);
  letter-spacing: 0.08em;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.01em;
  margin: 10px 0 12px;
}

.pillar p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.pillar li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

/* Service cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.card {
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 28px 26px 30px;
  background: var(--bone);
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}

.card p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Center orphan card on the last row (7 → 3+3+1) */
.cards .card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.cards-nav {
  display: none;
}

.cards-nav__hint {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.cards-nav__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.cards-nav__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
}

.cards-nav__dot[aria-current="true"] {
  background: var(--clay);
  transform: scale(1.15);
}

/* Engagement tiers */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.tier {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 32px 28px 34px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  margin: 0 0 6px;
}

.tier__meta {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}

.tier p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* About */

.about__sig {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.facts {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.facts li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

/* Fit */

.fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 12px;
}

.fit__grid h3 {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 8px;
}

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

.ticks li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 16.5px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 10px;
  height: 1px;
  background: var(--clay);
}

.ticks--muted li { color: var(--ink-mute); }
.ticks--muted li::before { background: var(--ink-mute); }

/* Closing CTA */

.cta {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 10vw, 120px) 0;
}

.cta__inner { max-width: 40rem; }

.cta__h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.cta__p {
  font-size: clamp(17px, 1.9vw, 20px);
  color: rgba(250, 248, 245, 0.78);
  margin: 0 0 36px;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin: 0 0 8px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background: rgba(250, 248, 245, 0.06);
  border: 1px solid rgba(250, 248, 245, 0.22);
  border-radius: 0;
  color: var(--bone);
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(250, 248, 245, 0.7) 50%),
    linear-gradient(135deg, rgba(250, 248, 245, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact-form__field select option {
  color: var(--ink);
  background: var(--bone);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(250, 248, 245, 0.35);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(250, 248, 245, 0.55);
  background: rgba(250, 248, 245, 0.09);
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-form__actions .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.contact-form__status {
  margin: 4px 0 0;
  font-size: 15px;
  color: rgba(250, 248, 245, 0.7);
}

.contact-form__status--ok { color: #c8e6c0; }
.contact-form__status--err { color: #f0c4b8; }

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.cta__contact {
  list-style: none;
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(250, 248, 245, 0.16);
  max-width: 42ch;
}

.cta__contact li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
  color: rgba(250, 248, 245, 0.78);
}

.cta__contact li span {
  color: rgba(250, 248, 245, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding-top: 3px;
}

.cta__contact a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 248, 245, 0.28);
}

.cta__contact a:hover {
  border-color: var(--bone);
}

.cta__meta {
  margin: 32px 0 0;
  font-size: 14px;
  color: rgba(250, 248, 245, 0.5);
  letter-spacing: 0.04em;
}

/* Footer */

.footer {
  background: var(--ink);
  color: rgba(250, 248, 245, 0.6);
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  padding: 34px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
}

.footer__tag,
.footer__legal,
.footer__industries { margin: 0; }

.footer__industries {
  color: rgba(250, 248, 245, 0.5);
}

.footer__industries a {
  color: rgba(250, 248, 245, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 248, 245, 0.28);
}

.footer__industries a:hover {
  color: var(--bone);
  border-color: var(--bone);
}

.ticks a {
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 82, 64, 0.35);
}

.ticks a:hover {
  border-color: var(--clay-deep);
}

.faq {
  margin-top: 36px;
  max-width: 48rem;
}

.faq__item {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq__item h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.faq__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.faq__item a {
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 82, 64, 0.35);
}

.faq__item a:hover {
  border-color: var(--clay-deep);
}

/* Responsive */

@media (max-width: 940px) {
  .pillars,
  .cards,
  .tiers,
  .diff { grid-template-columns: 1fr 1fr; }
  .grid-2,
  .about { grid-template-columns: 1fr; }

  .cards .card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .cards .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc((100% - 24px) / 2);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .nav__links a:not(.btn) { display: none; }
  .pillars,
  .tiers,
  .diff,
  .fit__grid { grid-template-columns: 1fr; }
  .hero__h1 { max-width: none; }
  .h2--wide { max-width: none; }
  .strip__inner { gap: 6px 24px; }
  .about__photo img { max-width: 100%; }
  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }
  .hero__veil {
    background:
      linear-gradient(0deg, rgba(26, 26, 24, 0.88) 0%, rgba(26, 26, 24, 0.42) 52%, rgba(26, 26, 24, 0.38) 100%);
  }
  .photo-bleed img,
  .photo-bleed--tall img { height: 40vh; }

  /* Services: horizontal swipe instead of a long stack */
  .cards {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin-top: 32px;
    margin-left: -28px;
    margin-right: -28px;
    padding: 4px 28px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 28px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .cards::-webkit-scrollbar { display: none; }

  .cards .card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
    grid-column: auto;
    max-width: none;
    min-height: 11.5rem;
  }

  .cards .card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .cards-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
  }
}
