@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --ink: #2d251f;
  --ink-soft: #5d5148;
  --dark: #1d1713;
  --dark-2: #2b211b;
  --cream: #f7f2eb;
  --ivory: #fffaf2;
  --line: #e4d8c8;
  --gold: #bb8732;
  --gold-dark: #9e6f23;
  --muted: #8e8174;
  --shadow: 0 22px 55px rgba(27, 18, 12, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
p {
  margin: 0 0 1.25rem;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.02;
  font-weight: 500;
  margin: 0;
}
h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.55rem, 4.8vw, 5rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.025em;
}
.small-cap {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.serif-gold {
  color: var(--gold);
  font-style: italic;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: var(--gold);
  color: white;
  padding: 1rem 1.55rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.site-header.scrolled {
  background: rgba(28, 21, 16, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 0.72rem 0;
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: 0.25s ease;
}
.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.55rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero .eyebrow {
  margin-bottom: 1.35rem;
}
.hero-actions {
  margin-top: 2rem;
}
.hero-footer-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.25rem;
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-footer-line:before,
.hero-footer-line:after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1rem 0 1.5rem;
}
.scroll-cue {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  opacity: 0.8;
  font-size: 1.3rem;
}
.page-hero {
  min-height: 44vh;
  position: relative;
  display: flex;
  align-items: end;
  padding: 8rem 0 4rem;
  color: white;
  background: #1d1713;
  overflow: hidden;
}
.page-hero .hero-media {
  animation: none;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 8, 6, 0.76),
    rgba(10, 8, 6, 0.18)
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(3.3rem, 7vw, 7rem);
}
.section {
  padding: 6.2rem 0;
}
.section.soft {
  background: var(--cream);
}
.section.dark {
  background: var(--dark);
  color: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 3.6rem;
}
.section-title .small-cap {
  margin-bottom: 1rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: center;
}
.intro-grid img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.42;
  color: var(--ink-soft);
}
.text-measure {
  max-width: 540px;
}
.learn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-top: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-card {
  min-height: 235px;
  text-align: center;
  padding: 3rem 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card:nth-child(3n) {
  border-right: 0;
}
.service-card h3 {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-step {
  text-align: center;
}
.process-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: #fff;
}
.process-step h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0.2rem 0 0.55rem;
  color: #fff;
}
.process-step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 260px;
  margin: 0 auto;
}
.testimonial-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--dark);
  color: #fff;
}
.testimonial-copy {
  padding: 5.3rem 7vw;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
}
.testimonial-copy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  line-height: 1.08;
  margin: 1rem 0;
  color: #fff;
}
.testimonial-copy cite {
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
}
.cta-section {
  padding: 5rem 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: "";
  position: absolute;
  left: -7rem;
  bottom: -6rem;
  width: 330px;
  height: 330px;
  background: url("/images/logo-dark.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 5rem;
  align-items: start;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cta-form textarea {
  grid-column: 1/-1;
  min-height: 135px;
  resize: vertical;
}
.cta-form .btn {
  grid-column: 1/-1;
  justify-content: center;
}
.form-field {
  width: 100%;
  border: 1px solid #d8cbbd;
  background: rgba(255, 255, 255, 0.62);
  padding: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}
.promise-list {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.promise-list i {
  color: var(--gold);
}
.advisors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.advisor-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 2rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.advisor-card img {
  border-radius: 8px;
}
.advisor-card h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.value-card {
  text-align: center;
  padding: 2rem 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.value-card:last-child {
  border-right: 0;
}
.value-card h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}
.value-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin: 0;
}
.site-footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 52px;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 0.3rem 0;
}
.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.journal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.placeholder-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem;
  min-height: 230px;
}
@media (max-width: 1050px) {
  .main-nav ul {
    gap: 1.1rem;
  }
  .nav-wrap {
    gap: 1rem;
  }
  .header-cta {
    display: none;
  }
  .intro-grid,
  .cta-grid,
  .testimonial-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testimonial-image {
    min-height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisors-grid {
    grid-template-columns: 1fr;
  }
}

/* Local SEO footer links */
.servT {
  margin: 0.35rem 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 500;
}
.servT a {
  color: rgba(255, 255, 255, 0.72);
}
.servT a:hover {
  color: #fff;
}
.nnear {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}
.footSBS {
  text-align: center;
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footSBS a {
  color: rgba(255, 255, 255, 0.72);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1360px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 320px;
}
.brand-word {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-top: 0.35rem;
  display: block;
  white-space: nowrap;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.45rem;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-home-icon {
  font-size: 0.92rem;
}
.nav-home-text {
  display: none;
}
.header-cta {
  white-space: nowrap;
  padding: 0.92rem 1.25rem;
  min-width: auto;
}
.service-icon {
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.4rem;
  font-size: 2.15rem;
  opacity: 0.86;
}
.service-icon i,
.value-card i,
.promise-list i {
  font-weight: 400;
}
.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.88;
}
@media (max-width: 600px) {
  .town-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.local-footer-links {
  margin-top: 2.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.78;
}
.weServHeader {
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 0.68rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0.14em !important;
  margin: 0 0 0.65rem !important;
}
.town-state-group {
  text-align: center;
}
.town-link-grid .servT {
  text-align: center;
  margin: 0.04rem 0;
  line-height: 1.12;
  font-size: 0.75rem;
  font-weight: 400;
}
.town-link-grid .servT a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.34);
  padding: 0.08rem 0.18rem;
}
.town-link-grid .servT a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.town-link-grid .servT strong {
  font-weight: 500;
}
.copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-row .copyright {
  text-align: left;
  margin: 0;
  padding: 0;
  border-top: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.copyright-row .footSBS {
  text-align: right;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.copyright-row .footSBS a {
  color: rgba(255, 255, 255, 0.55);
}
.town-state-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.45rem 0.75rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 0.38rem;
}
.town-state-heading {
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.58rem;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
  margin: 0;
  padding-top: 0.03rem;
}
.town-state-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.04rem 0.52rem;
}
.town-state-links .servT {
  text-align: center;
  margin: 0;
  line-height: 1.12;
  font-size: 0.74rem;
  font-weight: 400;
}
.town-state-links .servT a {
  color: rgba(255, 255, 255, 0.31);
  padding: 0.04rem 0.12rem;
}
.town-state-links .servT a:hover {
  color: rgba(255, 255, 255, 0.55);
}
.town-link-grid {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.04rem 0.65rem;
  align-items: start;
  max-width: 1020px;
  margin: 0.35rem auto 0;
}
.town-col {
  text-align: center;
}
.town-col .servT {
  text-align: center;
  margin: 0 0 0.08rem;
  line-height: 1.12;
  font-size: 0.74rem;
  font-weight: 400;
}
.town-col .servT a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.29);
  padding: 0.04rem 0.12rem;
}
.town-col .servT a:hover {
  color: rgba(255, 255, 255, 0.52);
}
.town-col .servT strong {
  font-weight: 500;
}
.footSBS,
.copyright-row .footSBS,
.copyright-row .footSBS a {
  font-size: 0.72rem;
}
@media (max-width: 980px) {
  .brand {
    min-width: auto;
  }
  .header-cta {
    display: none;
  }
  .weServHeader {
    white-space: normal;
  }
  .town-state-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.08rem 0.6rem;
  }
  .town-state-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .town-state-heading {
    grid-column: 1/-1;
    text-align: center;
  }
  .town-state-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .town-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.08rem 0.6rem;
  }
}
@media (max-width: 620px) {
  .town-state-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .copyright-row {
    display: block;
    text-align: center;
  }
  .copyright-row .copyright,
  .copyright-row .footSBS {
    text-align: center;
    line-height: 1.45;
  }
  .copyright-row .footSBS {
    margin-top: 0.35rem;
  }
  .town-state-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .town-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(3.1rem, 15vw, 4.1rem);
  }
  .town-link-grid {
    grid-template-columns: 1fr;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
}
.hero-title {
  font-size: clamp(4.2rem, 6.35vw, 7.65rem);
  line-height: 0.9;
}
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.35;
  color: #fffaf2;
  margin-top: 1.45rem;
  max-width: 680px;
}
@media (max-width: 1180px) {
  .brand {
    min-width: 270px;
  }
  .main-nav ul {
    gap: 1.05rem;
  }
  .nav-wrap {
    gap: 1rem;
  }
  .header-cta {
    padding: 0.82rem 1rem;
    font-size: 0.7rem;
  }
  .hero-copy {
    max-width: calc(100vw - 3rem);
    margin-left: 0;
  }
  .hero-title {
    font-size: clamp(3.9rem, 6.1vw, 6.5rem);
  }
}
@media (max-width: 820px) {
  .hero {
    min-height: 96vh;
  }
  .hero-content {
    padding-top: 6.2rem;
  }
  .hero-copy {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    margin-left: -0.2rem;
    padding: 2.3rem 1.35rem 2.25rem;
  }
  .hero-title {
    font-size: clamp(3.25rem, 12.2vw, 5.25rem);
    line-height: 0.92;
  }
  .hero-title-line {
    white-space: normal;
  }
  .hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }
  .hero p {
    font-size: 1.18rem;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .hero-content .container {
    width: 100%;
  }
  .hero-copy {
    width: calc(100vw - 0.8rem);
    max-width: calc(100vw - 0.8rem);
    margin-left: 0;
    padding: 2rem 0.95rem 2rem;
  }
  .hero-title {
    font-size: clamp(2.9rem, 13.4vw, 4.35rem);
  }
  .hero .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }
  .hero-actions .btn {
    width: auto;
    max-width: 100%;
  }
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      0deg,
      rgba(10, 8, 6, 0.52),
      rgba(10, 8, 6, 0.1) 45%,
      rgba(10, 8, 6, 0.22)
    ),
    radial-gradient(
      circle at 50% 45%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.18) 100%
    );
}
.hero-copy {
  width: fit-content;
  max-width: min(980px, calc(100vw - 2rem));
  padding: clamp(1.8rem, 4vw, 4.2rem);
  margin-left: clamp(0rem, 3vw, 2rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  background: linear-gradient(
    90deg,
    rgba(28, 22, 17, 0.74),
    rgba(28, 22, 17, 0.5)
  );
}
.hero.kenburns .hero-media {
  animation: kenburns 12s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes kenburns {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-1.4%, 0.9%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.kenburns .hero-media {
    animation: none;
    transform: scale(1.06);
  }
}
.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.sub-hero h1 {
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
  margin: 0 0 0.85rem;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}
.sub-hero p {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.22);
}
.sub-hero.js-random-hero {
  background-color: #1d1713;
  background-image: url("/images/hero/hero-safari-jeep.jpg");
  background-size: cover;
  background-position: center center;
}
.sub-hero .hero-media {
  inset: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  z-index: 0;
  opacity: 1;
}
.hero.js-random-hero .hero-media {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sub-hero .container,
.sub-hero-content {
  position: relative;
  z-index: 2;
}
.contact-sub-hero .sub-hero-content {
  max-width: 1120px;
}
.contact-sub-hero h1 {
  white-space: nowrap;
  font-size: clamp(4rem, 6vw, 7rem);
}

/* Add subtle dark shading behind the logo/menu when the header sits over hero images. */
.site-header .logo,
.site-header .logo img,
.site-header .main-nav a,
.site-header .mobile-nav-toggle {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.34));
}

/* Contact page was showing a pale band above the image because the sub-hero lived inside content-page flow. */
.contact-sub-hero {
  margin-top: 0;
}

/* Keep secondary headers consistent across random images. */
.sub-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(18, 14, 11, 0.76),
      rgba(18, 14, 11, 0.42) 45%,
      rgba(18, 14, 11, 0.18)
    ),
    linear-gradient(0deg, rgba(18, 14, 11, 0.72), rgba(18, 14, 11, 0.14) 62%),
    linear-gradient(180deg, rgba(18, 14, 11, 0.48), rgba(18, 14, 11, 0) 34%);
}

/* On very light hero crops, maintain menu contrast without making the whole header look like a black bar. */
@media (min-width: 761px) {
  .site-header {
    min-height: 92px;
  }
}
.site-header {
  transition: 0.25s ease;
  padding: 1.15rem 0;
  color: #fff;
  backdrop-filter: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(20, 15, 11, 0.58) 0%,
    rgba(20, 15, 11, 0.28) 58%,
    rgba(20, 15, 11, 0) 100%
  );
}

/* Since the header is absolute, the image hero needs enough top padding for the logo/menu. */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #1c1612;
  padding-top: 0;
}
.sub-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #1d1713;
  padding: 8.25rem 0 4rem;
  margin-top: 0;
  padding-top: 9.25rem;
}

/* Remove any accidental top spacing/band on content pages before the first sub hero. */
.content-page {
  padding-top: 0;
}
.content-page > .sub-hero:first-child {
  margin-top: 0;
}

/* Keep the header readable without turning it into a solid bar. */
.site-header:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(20, 15, 11, 0.3),
      rgba(20, 15, 11, 0.1) 48%,
      rgba(20, 15, 11, 0.28)
    ),
    linear-gradient(180deg, rgba(20, 15, 11, 0.4), rgba(20, 15, 11, 0));
}

/* Mobile menu still needs a real dark panel when opened. */
body.nav-open .site-header {
  background: rgba(20, 15, 11, 0.94);
}
.about-sub-hero {
  margin-top: 0 !important;
}
.about-sub-hero .hero-media {
  display: block !important;
  background-size: cover !important;
  background-position: center center !important;
}
.about-sub-hero .sub-hero-content {
  max-width: 900px;
}
.about-sub-hero h1 {
  white-space: normal;
}

.about-process-section {
  background: var(--ivory, #f7f1e8) !important;
  color: var(--ink, #241d18) !important;
}

.about-process-section h2,
.about-process-section h3,
.about-process-section p,
.about-process-section .lead {
  color: var(--ink, #241d18) !important;
}

.about-process-section .eyebrow,
.about-process-section .small-cap {
  color: var(--gold, #bd8d37) !important;
}

.about-process-section .value-card,
.about-process-section .process-card {
  color: var(--ink, #241d18) !important;
}

.about-process-section .value-card p,
.about-process-section .process-card p {
  color: rgba(36, 29, 24, 0.76) !important;
}

.about-process-section .value-card i,
.about-process-section .process-card i {
  color: var(--gold, #bd8d37) !important;
}

/* Sub-hero preheaders should match Services/Process style: uppercase small-cap treatment. */
.sub-hero .eyebrow,
.sub-hero .small-cap {
  margin-bottom: 0.85rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

/* Keep visible copy clean while preserving hidden SEO locality text. */
.seo-hidden {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* About/process icon refinements: closer to Services icons. */
.about-process-section .values-grid {
  gap: 1.25rem;
}
.about-process-section .value-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(36, 29, 24, 0.1) !important;
  border-radius: 18px;
  padding: 2rem 1.45rem;
  box-shadow: 0 16px 42px rgba(36, 29, 24, 0.06);
}
.about-process-section .value-card i,
.process-page-section .service-icon i {
  font-size: 2.05rem;
  color: var(--gold, #bd8d37) !important;
  margin-bottom: 1rem;
}
.about-process-section .value-card h3 {
  color: var(--ink, #241d18) !important;
}
.about-process-section .value-card p {
  color: rgba(36, 29, 24, 0.72) !important;
}

/* Process page uses the Services card visual language. */
.process-page-section {
  background: var(--ivory, #f7f1e8);
}
.process-page-section .service-card {
  background: #fff;
}
.process-page-section .service-card h3 {
  color: var(--ink, #241d18);
}
.process-page-section .service-card p {
  color: rgba(36, 29, 24, 0.72);
}

/* Ensure testimonial images load correctly and keep a balanced split. */
.testimonial-image {
  min-height: 370px;
  background-size: cover;
  background-position: center;
  background-color: #2a211b;
}
.process-band {
  padding: 3.7rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(61, 47, 34, 0.98),
    rgba(52, 39, 29, 0.98)
  );
  color: #fff;
  border-top: 1px solid rgba(189, 141, 55, 0.22);
  border-bottom: 1px solid rgba(189, 141, 55, 0.18);
}

.process-band .process-step {
  color: #fff;
}

.process-band .process-num {
  color: rgba(255, 255, 255, 0.92);
}

.process-band .process-step h3 {
  color: #fff;
}

.process-band .process-step p {
  color: rgba(255, 255, 255, 0.78);
}
.about-bios-section {
  background: var(--ivory, #f7f1e8);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.bio-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(36, 29, 24, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(36, 29, 24, 0.07);
}

.bio-photo {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.bio-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(189, 141, 55, 0.18), rgba(36, 29, 24, 0.08)),
    var(--sand, #efe5d3);
  color: var(--gold, #bd8d37);
  font-size: 3rem;
}

.bio-copy {
  padding: 2rem 2rem 2rem 0;
}

.bio-copy h3 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--ink, #241d18);
}

.bio-copy p {
  margin: 0;
  color: rgba(36, 29, 24, 0.74);
  line-height: 1.65;
}
.bio-card-full {
  grid-template-columns: 170px 1fr;
}

.bio-card-full .bio-copy p + p {
  margin-top: 1rem;
}

.bio-card-full .bio-copy {
  padding: 2rem 2.15rem 2.15rem 0;
}

@media (max-width: 1020px) {
  .bio-card {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    min-height: 240px;
  }

  .bio-copy {
    padding: 1.75rem;
  }
  .bio-card-full {
    grid-template-columns: 1fr;
  }

  .bio-card-full .bio-copy {
    padding: 1.75rem;
  }

  .bio-card-full .bio-photo {
    min-height: 220px;
  }
}
.bio-card,
.bio-card-full {
  display: block;
  grid-template-columns: none !important;
}

.bio-card .bio-copy,
.bio-card-full .bio-copy {
  padding: 2.25rem !important;
}

.bio-inline-photo.bio-photo-placeholder {
  background:
    linear-gradient(135deg, rgba(189, 141, 55, 0.14), rgba(36, 29, 24, 0.06)),
    var(--sand, #efe5d3);
  color: var(--gold, #bd8d37);
  font-size: 2.65rem;
}

.bio-card-full .bio-photo {
  min-height: 0;
}
.bio-inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bio-inline-photo {
  width: 100%;
  height: 240px;
  min-height: 0;
  margin: 1.25rem 0 1.45rem;
  border-radius: 16px;
  border: 1px solid rgba(36, 29, 24, 0.1);
  overflow: hidden;
}
.services-overview-section {
  background: var(--ivory, #f7f1e8);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.75rem;
}

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

@media (max-width: 680px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 1.8rem 1.45rem;
  }
}
.service-detail-card {
  background: #fff;
  border: 1px solid rgba(36, 29, 24, 0.1);
  border-radius: 20px;
  padding: 2.15rem 1.8rem;
  box-shadow: 0 16px 42px rgba(36, 29, 24, 0.06);
  text-align: center;
}

.service-detail-card .service-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink, #241d18);
  text-align: center;
}

.service-detail-card p {
  margin: 0;
  color: rgba(36, 29, 24, 0.72);
  line-height: 1.6;
  font-size: 0.96rem;
  text-align: left;
}
.service-feature-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.service-feature-space {
  background: #f2eadc;
}

.service-feature-events {
  background: var(--ivory, #f7f1e8);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.service-feature-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-feature-grid.reverse .service-feature-image {
  order: 2;
}

.service-feature-grid.reverse .service-feature-copy {
  order: 1;
}

.service-feature-image {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(36, 29, 24, 0.12);
  border: 1px solid rgba(36, 29, 24, 0.1);
}

.service-feature-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 4rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-feature-placeholder:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 29, 24, 0.42),
    rgba(36, 29, 24, 0.1)
  );
}

.service-feature-placeholder i {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.28));
}

.space-placeholder {
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(255, 255, 255, 0.86) 0 3%,
      rgba(255, 255, 255, 0) 4%
    ),
    radial-gradient(
      circle at 30% 72%,
      rgba(189, 141, 55, 0.34),
      rgba(189, 141, 55, 0) 28%
    ),
    linear-gradient(135deg, #101822, #263747 52%, #775a35);
}

.events-placeholder {
  background:
    radial-gradient(
      circle at 72% 30%,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0) 28%
    ),
    linear-gradient(135deg, #2a211b, #7b5a34 52%, #d0ad62);
}

.service-feature-copy {
  max-width: 650px;
}

.service-feature-copy h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.95;
  color: var(--ink, #241d18);
}

.service-feature-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: rgba(36, 29, 24, 0.78);
}
.service-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-detail-section {
  background: var(--ivory, #f7f1e8);
}

.process-detail-list {
  max-width: 1050px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.45rem;
}

.process-detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(36, 29, 24, 0.1);
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 16px 44px rgba(36, 29, 24, 0.06);
}

.process-detail-number {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: rgba(189, 141, 55, 0.62);
  text-align: center;
}

.process-detail-content h3 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.15rem, 3.2vw, 3.6rem);
  line-height: 1;
  color: var(--ink, #241d18);
}

.process-detail-content p {
  margin: 0;
  color: rgba(36, 29, 24, 0.74);
  line-height: 1.7;
  font-size: 1.02rem;
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .brand-word {
    font-size: 1.35rem;
  }
  .brand-tag {
    font-size: 0.52rem;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-wrap {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(28, 21, 16, 0.98);
    padding: 1.25rem 5%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-wrap.open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: 92vh;
  }
  .hero-content {
    padding-top: 5rem;
  }
  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .hero-footer-line {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }
  .hero-footer-line:before,
  .hero-footer-line:after {
    width: 34px;
    margin: 0 0.55rem;
  }
  .section {
    padding: 4rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: 0;
  }
  .cta-form {
    grid-template-columns: 1fr;
  }
  .advisor-card {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .journal-list,
  .two-col {
    grid-template-columns: 1fr;
  }
  .nav-home-text {
    display: inline;
  }
  .hero-title {
    font-size: clamp(3.8rem, 14vw, 5.2rem);
    line-height: 0.9;
  }
  .hero-title-line {
    white-space: normal;
  }
  .site-footer {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .site-footer ul,
  .site-footer p {
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
  .sub-hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }
  .contact-sub-hero h1 {
    white-space: normal;
    font-size: clamp(3rem, 11vw, 4.8rem);
  }
  .sub-hero {
    min-height: 42vh;
    padding: 7rem 0 3rem;
    padding-top: 8rem;
  }
  .site-header {
    padding: 0.7rem 0;
    background: linear-gradient(
      180deg,
      rgba(20, 15, 11, 0.7),
      rgba(20, 15, 11, 0.25) 76%,
      rgba(20, 15, 11, 0)
    );
  }
  .testimonial-split {
    grid-template-columns: 1fr;
  }
  .testimonial-image {
    min-height: 260px;
  }
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-card .bio-copy,
  .bio-card-full .bio-copy {
    padding: 1.65rem !important;
  }

  .bio-inline-photo {
    height: 210px;
  }
  .process-detail-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem;
  }

  .process-detail-number {
    text-align: left;
  }
}

/* Avoid older iOS issues with background attachment/transforms creating missing background paint. */
@supports (-webkit-touch-callout: none) {
  .hero .hero-media,
  .sub-hero .hero-media {
    -webkit-transform: none !important;
    transform: none !important;
  }

  .hero.kenburns .hero-media {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

.mobile-nav-toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
  touch-action: manipulation;
  position: relative;
  z-index: 1002;
}
.mobile-toggle,
.mobile-nav-toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.18);
  touch-action: manipulation;
  position: relative;
  z-index: 3001;
}

@media (min-width: 901px) {
  .main-nav {
    display: flex;
  }
  .mobile-toggle,
  .mobile-nav-toggle {
    display: none !important;
  }

  .nav-wrap {
    display: flex !important;
  }
}
.hero.js-random-hero,
.sub-hero.js-random-hero {
  background-image: url("/images/hero/hero-safari-jeep.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero .hero-media,
.sub-hero .hero-media {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .service-feature-grid,
  .service-feature-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-feature-grid.reverse .service-feature-image,
  .service-feature-grid.reverse .service-feature-copy {
    order: initial;
  }

  .service-feature-image {
    min-height: 280px;
  }
  .main-nav {
    display: none;
  }

  body.nav-open .main-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    background: rgba(20, 15, 11, 0.97);
    padding: 7.5rem 2rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.15rem;
    overflow: auto;
  }

  body.nav-open .main-nav a {
    display: block;
    color: #fff !important;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  body.nav-open .main-nav .nav-cta,
  body.nav-open .main-nav .btn,
  body.nav-open .main-nav a:last-child {
    margin-top: 0.75rem;
  }
  .mobile-toggle,
  .mobile-nav-toggle {
    display: block !important;
  }

  .site-header {
    z-index: 3000 !important;
  }

  .header-inner {
    position: relative;
    z-index: 3002;
  }

  .nav-wrap {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    background: rgba(20, 15, 11, 0.98) !important;
  }

  body.nav-open .nav-wrap,
  .nav-wrap.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    z-index: 2999 !important;
    background: rgba(20, 15, 11, 0.98) !important;
    padding: 7.25rem 2rem 2rem !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1.2rem !important;
    overflow: auto !important;
  }

  body.nav-open .main-nav,
  .nav-wrap.open .main-nav {
    display: block !important;
    width: 100%;
  }

  body.nav-open .main-nav ul,
  .nav-wrap.open .main-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.65rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  body.nav-open .main-nav a,
  .nav-wrap.open .main-nav a {
    display: block !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.1em !important;
    padding: 0.75rem 1rem !important;
    text-align: center !important;
  }

  body.nav-open .header-cta,
  .nav-wrap.open .header-cta {
    display: inline-flex !important;
    margin-top: 0.75rem !important;
  }
  .hero .hero-media,
  .sub-hero .hero-media {
    -webkit-transform: none !important;
    transform: none !important;
  }

  .hero.kenburns .hero-media {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero .hero-media,
  .sub-hero .hero-media {
    -webkit-transform: none !important;
    transform: none !important;
  }

  .hero.kenburns .hero-media {
    -webkit-animation: none !important;
    animation: none !important;
  }
}


/* v49 spacing between feature headline and paragraph */
.service-feature-copy h2{
  margin-bottom:1.65rem;
}

.service-feature-copy .small-cap + h2{
  margin-top:.45rem;
}


/* v50 home intro spacing: add breathing room below the large headline */
.intro-grid h2,
.intro-copy h2,
.text-measure h2{
  margin-bottom:1.55rem;
}

.intro-grid h2 + p,
.intro-grid h2 + .lead,
.intro-copy h2 + p,
.intro-copy h2 + .lead,
.text-measure h2 + p,
.text-measure h2 + .lead{
  margin-top:0;
}


/* v51 process band number font refinement */
.process-band .process-num,
.process-num{
  font-family:var(--sans);
  font-weight:600;
  letter-spacing:.04em;
  font-variant-numeric:tabular-nums;
}


/* v52 CTA headline spacing */
.cta-grid h2,
.cta-section h2{
  margin-bottom: 1.4rem;
}

.cta-grid h2 + p,
.cta-section h2 + p{
  margin-top: 0;
}


/* v53 about process cards: closer to homepage service-card section */
.about-process-section .about-values-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.about-process-section .about-values-grid .value-card{
  background:transparent !important;
  border:0 !important;
  border-right:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:3rem 2rem;
  text-align:center;
}

.about-process-section .about-values-grid .service-icon{
  color:var(--gold);
  font-size:2.1rem;
  line-height:1;
  margin:0 auto 1.35rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-process-section .about-values-grid .service-icon i{
  font-size:2.1rem;
  color:var(--gold) !important;
  margin:0;
}

.about-process-section .about-values-grid h3{
  font-family:var(--sans);
  font-size:.82rem;
  line-height:1.35;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:800;
  margin:0 0 .75rem;
  color:var(--ink, #241d18) !important;
}

.about-process-section .about-values-grid p{
  max-width:250px;
  margin:0 auto;
  font-size:.94rem;
  line-height:1.55;
  color:var(--ink-soft, #5d5148) !important;
}

@media(max-width:1100px){
  .about-process-section .about-values-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media(max-width:760px){
  .about-process-section .about-values-grid{
    grid-template-columns:1fr;
  }

  .about-process-section .about-values-grid .value-card{
    padding:2.35rem 1.5rem;
  }
}


/* v54 about process card typography refinements */
.about-process-section .about-values-grid .value-card{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.about-process-section .about-values-grid h3{
  font-size:.92rem;
  line-height:1.55;
  min-height:2.95rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:.95rem;
}

.about-process-section .about-values-grid p{
  padding-top:.25rem;
  line-height:1.48;
}


/* v55 services card text alignment */
.service-detail-card{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.service-detail-card .service-icon{
  flex:0 0 auto;
}

.service-detail-card h3{
  min-height:3.75rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.05rem;
  line-height:1.45;
}

.service-detail-card p{
  width:100%;
  margin-top:0;
}


/* v56 process page number font refinement */
.process-detail-number{
  font-family:var(--sans);
  font-weight:600;
  letter-spacing:.04em;
  font-variant-numeric:tabular-nums;
}


/* v57 process page number size adjustment */
.process-detail-number{
  font-size:clamp(2.3rem, 4vw, 3.65rem);
  line-height:1;
}


/* v58 CTA mobile background logo layering fix */
.cta-section .container,
.cta-section .cta-grid{
  position:relative;
  z-index:1;
}

.cta-section:before{
  z-index:0;
}

@media(max-width:760px){
  .cta-section:before{
    opacity:.025;
    left:-9rem;
    bottom:-8rem;
    width:280px;
    height:280px;
    pointer-events:none;
  }

  .cta-form,
  .cta-grid > *{
    position:relative;
    z-index:2;
  }
}


/* CTA watermark behind form fix */
.cta-section{
  isolation:isolate;
}

.cta-section:before{
  z-index:0;
  pointer-events:none;
}

.cta-section .container,
.cta-section .cta-grid{
  position:relative;
  z-index:1;
}

.cta-form{
  position:relative;
  z-index:2;
}

.cta-form:before{
  content:"";
  position:absolute;
  inset:-.65rem;
  background:var(--ivory);
  z-index:-1;
  pointer-events:none;
}

.cta-form .form-field{
  background:var(--ivory);
}

@media(max-width:980px){
  .cta-form:before{
    inset:-.85rem;
  }

  .cta-section:before{
    opacity:.025;
  }
}


/* CTA transparent form / watermark layering refinement */
.cta-section{
  isolation:isolate;
}

.cta-section:before{
  z-index:0;
  pointer-events:none;
}

.cta-section .container,
.cta-section .cta-grid,
.cta-section .cta-form{
  position:relative;
  z-index:2;
}

/* Remove the opaque backing panel from the prior watermark fix. */
.cta-form:before{
  content:none !important;
  display:none !important;
}

/* Keep the form itself transparent, while each field/button stays above the watermark. */
.cta-form{
  background:transparent !important;
}

.cta-form .form-field,
.cta-form .btn{
  position:relative;
  z-index:3;
}

/* Restore the intended light field treatment instead of a solid form panel. */
.cta-form .form-field{
  background:rgba(255,255,255,.62);
}

@media(max-width:980px){
  .cta-section:before{
    opacity:.025;
  }
}


/* CTA fields opaque over watermark */
.cta-section{
  isolation:isolate;
}

.cta-section:before{
  z-index:0;
  pointer-events:none;
}

.cta-section .container,
.cta-section .cta-grid,
.cta-section .cta-form{
  position:relative;
  z-index:2;
}

.cta-form{
  background:transparent !important;
}

.cta-form:before{
  content:none !important;
  display:none !important;
}

/* The form remains transparent; only the actual fields block the watermark. */
.cta-form input.form-field,
.cta-form textarea.form-field,
.cta-form select.form-field{
  position:relative;
  z-index:3;
  background:#fffaf2 !important;
  background-color:#fffaf2 !important;
}

.cta-form .btn{
  position:relative;
  z-index:3;
}

@media(max-width:980px){
  .cta-section:before{
    opacity:.025;
    pointer-events:none;
  }
}


/* CTA restore white form fields */
.cta-form input.form-field,
.cta-form textarea.form-field,
.cta-form select.form-field{
  background:#fff !important;
  background-color:#fff !important;
}


/* v64 remove CTA watermark and increase small-cap size */
.cta-section:before{
  content:none !important;
  display:none !important;
  background:none !important;
}

.small-cap,
.sub-hero .eyebrow,
.sub-hero .small-cap{
  font-size:.82rem;
}

@media(max-width:760px){
  .small-cap,
  .sub-hero .eyebrow,
  .sub-hero .small-cap{
    font-size:.78rem;
  }
}


/* v65 circle step numbers on homepage and process page */
.process-num{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.14), rgba(255,255,255,.03) 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.1));
  border: 1px solid rgba(216, 180, 95, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 28px rgba(0,0,0,.18);
}

.process-step h3{
  margin-top: 0;
}

.process-detail-number{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #b88c3e;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.88), rgba(255,255,255,.52) 58%, rgba(241,234,220,.95) 100%);
  border: 1px solid rgba(184, 140, 62, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 10px 24px rgba(36,29,24,.08);
}

@media (max-width: 760px){
  .process-num{
    width: 62px;
    height: 62px;
    font-size: 1.7rem;
    margin-bottom: .8rem;
  }
  .process-detail-number{
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }
}


/* v66 simplified footer option */
.footer-grid-simple{
  grid-template-columns:minmax(320px, 520px) auto;
  align-items:start;
  justify-content:space-between;
  gap:2.5rem;
}

.footer-brand-center{
  text-align:center;
  justify-self:start;
  max-width:420px;
}

.footer-brand-center .footer-logo{
  justify-content:center;
}

.footer-brand-center p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.footer-brand-center .socials{
  justify-content:center;
}

.footer-contact{
  justify-self:end;
  text-align:left;
  padding-top:.25rem;
}

.footer-terms{
  text-align:center;
  font-size:.72rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.footer-terms a{
  color:rgba(255,255,255,.55);
}

.footer-terms a:hover{
  color:rgba(255,255,255,.82);
}

.copyright-row{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}

.copyright-row .footSBS{
  justify-self:end;
}

@media(max-width:860px){
  .footer-grid-simple{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }

  .footer-brand-center{
    justify-self:center;
  }

  .footer-contact{
    justify-self:center;
    text-align:center;
    padding-top:0;
  }

  .copyright-row{
    grid-template-columns:1fr;
    gap:.55rem;
    text-align:center;
  }

  .copyright-row .copyright,
  .copyright-row .footSBS{
    justify-self:center;
    text-align:center;
  }
}


/* v67 About page experience headline size */
.about-experience-headline{
  font-size:clamp(2.65rem, 4vw, 4.15rem);
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:760px){
  .about-experience-headline{
    font-size:clamp(2.25rem, 10vw, 3.35rem);
  }
}


/* v70 footer: logo left, tagline/social center, contact right */
.footer-grid.footer-grid-simple{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:start;
  gap:2rem;
}

.footer-brand-block{
  text-align:left;
  justify-self:start;
}

.footer-brand-block .footer-logo{
  justify-content:flex-start;
}

.footer-center-block{
  text-align:center;
  justify-self:center;
}

.footer-center-block .footer-tagline{
  margin:0 0 1rem;
  line-height:1.5;
  max-width:430px;
  text-align:center;
}

.footer-center-block .socials{
  justify-content:center;
}

.footer-contact-block{
  text-align:left;
  justify-self:end;
}

@media(max-width:900px){
  .footer-grid.footer-grid-simple{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }

  .footer-brand-block,
  .footer-center-block,
  .footer-contact-block{
    text-align:center;
    justify-self:center;
  }

  .footer-brand-block .footer-logo{
    justify-content:center;
  }

  .footer-center-block .socials{
    justify-content:center;
  }
}


/* v71 footer terms font match */
.footer-terms,
.footer-terms a{
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:400;
  letter-spacing:.08em;
  line-height:1.45;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
}

.footer-terms a:hover{
  color:rgba(255,255,255,.72);
}


/* v72 Terms & Conditions page */
.terms-sub-hero h1{
  max-width:1050px;
}

.legal-section{
  background:var(--ivory, #fffaf2);
}

.legal-card{
  max-width:980px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(36,29,24,.10);
  border-radius:22px;
  padding:clamp(2rem, 4vw, 3.25rem);
  box-shadow:0 18px 46px rgba(36,29,24,.07);
}

.legal-card h2{
  margin:.35rem 0 1.15rem;
  font-size:clamp(2.35rem, 4vw, 4.2rem);
  line-height:.98;
}

.legal-license-line{
  margin:0;
  font-family:var(--sans);
  font-size:.82rem;
  line-height:1.65;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold);
}

.legal-divider{
  height:1px;
  background:var(--line);
  margin:2rem 0;
}

.legal-copy{
  margin-top:1rem;
}

.legal-copy p{
  margin:0;
  color:var(--ink-soft);
  font-size:1.02rem;
  line-height:1.72;
}

.legal-copy p + p{
  margin-top:1.15rem;
}

@media(max-width:760px){
  .legal-card{
    border-radius:18px;
    padding:1.65rem;
  }

  .legal-license-line{
    font-size:.76rem;
    letter-spacing:.08em;
  }
}


/* v73 travel inspiration map */
.travel-map-section{
  position:relative;
  background:#eef1ec;
  color:#fff;
  overflow:hidden;
  padding:0;
}

.travel-map-wrap{
  position:relative;
  min-height:600px;
}

#travelInspireMap{
  width:100%;
  height:600px;
  background:#eef1ec;
}

.travel-map-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(16,32,39,.82) 0%, rgba(16,32,39,.56) 34%, rgba(16,32,39,.04) 76%),
    linear-gradient(0deg, rgba(16,32,39,.22), rgba(16,32,39,0));
  z-index:2;
}

.travel-map-content{
  position:absolute;
  left:max(24px, calc((100vw - 1180px) / 2));
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:min(460px, calc(100% - 48px));
  pointer-events:auto;
}

.travel-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#d9c48f;
  font-weight:700;
}

.travel-map-content h2{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.02;
  letter-spacing:-.03em;
  text-shadow:0 3px 18px rgba(0,0,0,.28);
}

.travel-map-content .intro{
  margin:0 0 22px;
  color:rgba(255,255,255,.9);
  font-size:18px;
  line-height:1.55;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}

.destination-card{
  background:rgba(255,255,255,.95);
  color:#20343b;
  border-radius:18px;
  padding:22px;
  box-shadow:0 22px 60px rgba(0,0,0,.26);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.55);
}

.destination-card h3{
  margin:0 0 8px;
  color:#102027;
  font-size:28px;
  line-height:1.1;
}

.destination-card p{
  margin:0 0 14px;
  color:#4b5b60;
  line-height:1.5;
}

.destination-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.destination-tags li{
  background:#f2ead8;
  color:#5f4b1f;
  border-radius:999px;
  padding:6px 11px;
  font-size:13px;
  font-weight:700;
}

.travel-map-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.travel-btn{
  appearance:none;
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.travel-btn.primary{
  background:#d9b45f;
  color:#102027;
  box-shadow:0 8px 20px rgba(217,180,95,.28);
}

.travel-btn.secondary{
  background:#102027;
  color:#fff;
}

.travel-map-note{
  margin-top:12px;
  color:rgba(255,255,255,.76);
  font-size:13px;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

.map-loading{
  position:absolute;
  right:24px;
  bottom:24px;
  z-index:4;
  background:rgba(16,32,39,.72);
  color:rgba(255,255,255,.9);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
}

.inspiration-intro-section{
  background:var(--ivory);
}

.inspiration-intro-section .lead{
  max-width:760px;
  margin:1.35rem auto 0;
  text-align:center;
}

@media(max-width:767px){
  .travel-map-wrap,
  #travelInspireMap{
    min-height:720px;
    height:720px;
  }

  .travel-map-overlay{
    background:linear-gradient(0deg, rgba(16,32,39,.88) 0%, rgba(16,32,39,.66) 50%, rgba(16,32,39,.08) 100%);
  }

  .travel-map-content{
    left:20px;
    right:20px;
    top:auto;
    bottom:28px;
    transform:none;
    width:auto;
  }

  .travel-map-content .intro{
    font-size:16px;
  }

  .destination-card{
    padding:18px;
  }

  .destination-card h3{
    font-size:24px;
  }
}


/* v76 working inquiry form */
.website-field{
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.thank-you-card{
  text-align:center;
}

.thank-you-card .lead{
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}


/* v88 duotone icon contrast */
.service-icon .fa-duotone,
.service-icon .fad{
  --fa-primary-opacity:1;
  --fa-secondary-opacity:.62;
}


/* v92 contact message normal-case entry */
.cta-form textarea.form-field{
  text-transform:none;
  letter-spacing:.02em;
  font-size:.95rem;
  line-height:1.55;
}
