:root {
  --ink: #171512;
  --ink-soft: #36322d;
  --paper: #f7f2eb;
  --paper-deep: #eee5d9;
  --cream: #fffaf3;
  --white: #ffffff;
  --clay: #a76545;
  --clay-dark: #73432e;
  --sage: #77806d;
  --gold: #b89055;
  --line: rgba(23, 21, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(35, 26, 18, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(23, 21, 18, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: linear-gradient(145deg, #d7b88a, #8e5a3f);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand small {
  display: block;
  color: rgba(255,255,255,.67);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 720;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  margin: auto;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 144, 85, .16), transparent 33%),
    linear-gradient(135deg, #171512 0%, #211b17 55%, #2b211b 100%);
  color: var(--white);
}

.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d8c2a4;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(47px, 6.4vw, 86px);
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 600;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.73);
  font-size: clamp(17px, 2vw, 20px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 820;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

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

.button-outline {
  border-color: rgba(255,255,255,.26);
  color: var(--white);
}

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

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

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  width: min(100%, 560px);
  height: 520px;
  margin-left: auto;
  border-radius: 200px 200px 26px 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 36px 100px rgba(0,0,0,.42);
}

.profile-chip {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: min(315px, 78%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(248, 241, 232, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.profile-chip img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-chip strong {
  display: block;
  font-size: 16px;
}

.profile-chip span {
  color: #6d6259;
  font-size: 13px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  text-align: center;
  color: #6a6057;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trust-inner span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding-block: clamp(76px, 10vw, 125px);
}

.section-cream {
  background: var(--cream);
}

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

.section-heading {
  max-width: 730px;
  margin-bottom: 40px;
}

.section-heading p {
  margin: 0;
  color: #70665d;
  font-size: 18px;
}

.section-dark .section-heading p {
  color: rgba(255,255,255,.66);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.branch-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(44, 34, 24, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(167, 101, 69, .18), transparent 35%);
}

.branch-card > * {
  position: relative;
}

.branch-card-large {
  grid-column: span 6;
}

.branch-card-small {
  grid-column: span 3;
}

.branch-number {
  margin-bottom: auto;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.branch-card p {
  margin: 0;
  color: #71675e;
}

.branch-link {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 850;
}

.branch-card-dark {
  background: #26221e;
  color: var(--white);
  border-color: transparent;
}

.branch-card-dark p {
  color: rgba(255,255,255,.65);
}

.branch-card-sage {
  background: #dfe3d9;
}

.branch-card-clay {
  background: #ead7ca;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-card {
  text-decoration: none;
}

.photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ddd;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card h3 {
  margin: 18px 0 6px;
  font-size: 26px;
}

.photo-card p {
  margin: 0;
  color: #70665d;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.split-photo {
  min-height: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.copy p {
  color: #70665d;
  font-size: 18px;
}

.copy .button-row {
  margin-top: 28px;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stay-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.stay-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.stay-card-body {
  padding: 24px;
}

.stay-card-body h3 {
  font-size: 25px;
}

.stay-card-body p {
  color: #70665d;
}

.text-link {
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #b77756, #7e4934);
  color: var(--white);
}

.cta-panel p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.cta-panel .button-row {
  justify-content: flex-end;
}

.page-hero {
  padding-block: 90px 82px;
  background: linear-gradient(135deg, #171512, #2b211b);
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 19px;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.breadcrumbs a {
  text-underline-offset: 3px;
}

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

.info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.info-card p {
  color: #70665d;
}

.link-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.link-group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
  font-weight: 760;
}

.link-item:hover {
  border-color: rgba(167,101,69,.55);
  background: #fbf7f1;
}

.link-item span {
  color: #8a7d72;
  font-size: 12px;
  font-weight: 650;
}

.site-footer {
  padding-block: 56px 34px;
  background: #11100e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap: 40px;
}

.footer-copy {
  max-width: 500px;
  color: rgba(255,255,255,.58);
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d6bd9c;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid #d7a66d;
  outline-offset: 4px;
}


/* =========================================================
   GLOBAL RESPONSIVE
   ========================================================= */

@media (max-width: 920px) {

  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: #1d1a17;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .nav-cta {
    border: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .branch-card-large {
    grid-column: span 12;
  }

  .branch-card-small {
    grid-column: span 6;
  }

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

  .split-photo {
    min-height: 430px;
  }

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

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

  .cta-panel .button-row {
    justify-content: flex-start;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

}


@media (max-width: 680px) {

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .brand-text {
    font-size: 14px;
  }

  .hero-inner {
    padding-block: 54px 68px;
    gap: 46px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-photo {
    height: 430px;
    border-radius: 150px 150px 22px 22px;
  }

  .profile-chip {
    left: 10px;
    bottom: 18px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 20px;
  }

  .trust-inner span {
    padding: 8px;
  }

  .trust-inner span + span {
    border-left: 0;
  }

  .branch-card-small {
    grid-column: span 12;
  }

  .photo-grid,
  .stay-grid,
  .content-grid,
  .link-groups {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 72px;
  }

  .page-hero {
    padding-block: 64px;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

}


/* =========================================================
   CONNECT PAGE
   ========================================================= */

.connect-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(184,144,85,.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #eee5d9 0%,
      #f7f2eb 48%,
      #fffaf3 100%
    );
}


/* =========================================================
   CONNECT HEADER
   ========================================================= */

.connect-header {
  width: min(calc(100% - 40px), 1180px);
  min-height: 78px;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.connect-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.connect-brand-mark {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #d7b88a,
      #8e5a3f
    );

  color: white;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
}

.connect-brand small {
  display: block;

  color: #766b61;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.connect-home-link {
  color: #6c6259;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;
}

.connect-home-link:hover {
  color: var(--clay);
}


/* =========================================================
   DIGITAL PROFILE
   ========================================================= */

.digital-profile {
  padding: 25px 20px 80px;
}

.digital-card {
  width: min(100%, 760px);
  margin-inline: auto;

  overflow: hidden;

  border: 1px solid rgba(23,21,18,.12);

  border-radius: 34px;

  background: var(--cream);

  box-shadow:
    0 28px 85px
    rgba(35,26,18,.16);
}

.digital-cover {
  width: 100%;
  aspect-ratio: 1100 / 648;
  overflow: hidden;

  background: var(--ink);
}

.digital-cover img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.digital-avatar-holder {
  position: relative;

  z-index: 2;

  height: 0;

  display: flex;
  justify-content: center;
}

.digital-avatar {
  width: 172px;
  height: 172px;

  transform: translateY(-50%);

  border: 7px solid var(--cream);

  border-radius: 50%;

  object-fit: cover;

  background: var(--paper-deep);

  box-shadow:
    0 15px 38px
    rgba(23,21,18,.25);
}

.digital-intro {
  padding: 108px 45px 34px;

  text-align: center;
}

.digital-eyebrow {
  margin: 0 0 6px;

  color: var(--clay);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .15em;

  text-transform: uppercase;
}

.digital-intro h1 {
  margin: 0 0 7px;

  font-size:
    clamp(
      40px,
      6vw,
      58px
    );
}

.digital-location {
  margin: 0 0 22px;

  color: #786e65;

  font-size: 13px;
  font-weight: 750;

  letter-spacing: .025em;
}

.digital-bio {
  max-width: 555px;

  margin: 0 auto 30px;

  color: #675e56;

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   PROFILE BUTTONS
   ========================================================= */

.digital-actions {
  width: min(100%, 470px);

  margin-inline: auto;

  display: grid;
  gap: 10px;
}

.digital-button {
  width: 100%;
  min-height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 12px 22px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 850;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

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

.digital-button-primary {
  border: 1px solid var(--ink);

  background: var(--ink);

  color: var(--white);
}

.digital-button-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.digital-button-secondary {
  border: 1px solid var(--line);

  background: transparent;

  color: var(--ink);
}

.digital-button-secondary:hover {
  border-color: var(--clay);

  background: #fbf4ec;
}

.button-icon {
  width: 22px;
  height: 22px;

  display: inline-grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;

  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}


/* =========================================================
   IMAGE LINK GRID
   ========================================================= */

.digital-links {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px 18px;

  padding: 24px 45px 55px;
}

.digital-link {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;

  color: var(--ink);

  text-align: center;

  text-decoration: none;
}

.digital-link-image {
  width: 100%;
  max-width: 112px;

  aspect-ratio: 1;

  display: block;

  overflow: hidden;

  border: 1px solid rgba(23,21,18,.08);

  border-radius: 25%;

  background: var(--paper-deep);

  box-shadow:
    0 9px 24px
    rgba(38,29,21,.12);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.digital-link-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.digital-link > span:last-child {
  max-width: 120px;

  color: #4e4740;

  font-size: 12px;
  font-weight: 760;

  line-height: 1.3;
}

.digital-link:hover .digital-link-image {
  transform:
    translateY(-4px)
    scale(1.015);

  box-shadow:
    0 14px 32px
    rgba(38,29,21,.19);
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.digital-bottom-cta {
  margin: 0 45px 48px;

  padding: 26px;

  border-radius: 22px;

  background: var(--paper-deep);

  text-align: center;
}

.digital-bottom-cta p {
  margin: 0 0 12px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 23px;
}

.digital-bottom-cta button {
  min-height: 45px;

  padding: 10px 20px;

  border: 0;

  border-radius: 999px;

  background: var(--clay);

  color: white;

  font-size: 13px;

  font-weight: 850;

  cursor: pointer;
}


/* =========================================================
   LEAD CAPTURE MODAL
   ========================================================= */

body.lead-modal-open,
body.save-contact-modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;

  z-index: 3000;

  inset: 0;

  visibility: hidden;

  opacity: 0;

  display: grid;
  place-items: center;

  padding: 35px 20px;

  transition:
    opacity .22s ease,
    visibility .22s ease;
}

.lead-modal.is-open {
  visibility: visible;

  opacity: 1;
}

.lead-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(17,16,14,.76);

  backdrop-filter: blur(9px);
}

.lead-card {
  position: relative;

  z-index: 1;

  width: min(100%, 520px);

  max-height:
    calc(100dvh - 55px);

  overflow-y: auto;

  padding: 112px 35px 30px;

  border: 1px solid rgba(255,255,255,.35);

  border-radius: 30px;

  background: var(--cream);

  color: var(--ink);

  box-shadow:
    0 35px 110px
    rgba(0,0,0,.4);

  transform:
    translateY(18px)
    scale(.985);

  transition:
    transform .24s ease;
}

.lead-modal.is-open .lead-card {
  transform:
    translateY(0)
    scale(1);
}

.lead-close {
  position: absolute;

  top: 13px;
  right: 16px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;

  background: transparent;

  color: #625b55;

  font-size: 35px;

  font-weight: 300;

  line-height: 1;

  cursor: pointer;
}

.lead-avatar {
  position: absolute;

  top: 22px;
  left: 50%;

  width: 78px;
  height: 78px;

  transform: translateX(-50%);

  object-fit: cover;

  border: 5px solid var(--cream);

  border-radius: 50%;

  background: var(--paper-deep);

  box-shadow:
    0 10px 28px
    rgba(0,0,0,.18);
}

.lead-heading {
  padding-bottom: 22px;

  border-bottom: 1px solid var(--line);

  text-align: center;
}

.lead-kicker {
  margin: 0 0 7px;

  color: var(--clay);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .15em;

  text-transform: uppercase;
}

.lead-heading h2 {
  margin: 0 0 11px;

  font-size: 35px;
}

.lead-heading > p:last-child {
  max-width: 405px;

  margin: 0 auto;

  color: #6c6259;

  font-size: 14px;

  line-height: 1.55;
}

.lead-form {
  display: grid;

  gap: 13px;

  padding-top: 23px;
}

.lead-field {
  display: grid;

  gap: 5px;
}

.lead-field label {
  color: #514941;

  font-size: 11px;

  font-weight: 850;
}

.lead-field label span {
  color: var(--clay);
}

.lead-field input,
.lead-field textarea {
  width: 100%;

  min-height: 49px;

  padding: 11px 13px;

  border: 1px solid rgba(23,21,18,.18);

  border-radius: 11px;

  outline: none;

  background: white;

  color: var(--ink);

  font-size: 14px;

  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

.lead-field textarea {
  min-height: 82px;

  resize: vertical;
}

.lead-field input:focus,
.lead-field textarea:focus {
  border-color: var(--clay);

  box-shadow:
    0 0 0 4px
    rgba(167,101,69,.11);
}

.lead-submit {
  min-height: 54px;

  margin-top: 5px;

  border: 0;

  border-radius: 999px;

  background: var(--ink);

  color: white;

  font-size: 14px;

  font-weight: 900;

  cursor: pointer;

  transition:
    background .18s ease,
    transform .18s ease;
}

.lead-submit:hover {
  transform: translateY(-1px);

  background: var(--clay-dark);
}

.lead-submit:disabled {
  cursor: wait;

  opacity: .7;
}

.lead-privacy {
  margin: 0;

  color: #8b8178;

  text-align: center;

  font-size: 10px;

  line-height: 1.45;
}

.lead-error {
  margin: 2px 0 0;

  padding: 10px;

  border-radius: 9px;

  background: #f5e4de;

  color: #743c2d;

  text-align: center;

  font-size: 12px;

  font-weight: 700;
}


/* =========================================================
   LEAD SUCCESS
   ========================================================= */

.lead-success {
  padding: 5px 4px 10px;

  text-align: center;
}

.lead-success-icon {
  width: 62px;

  height: 62px;

  margin: 0 auto 20px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--sage);

  color: white;

  font-size: 27px;

  font-weight: 900;
}

.lead-success h2 {
  margin: 0 0 13px;

  font-size: 38px;
}

.lead-success > p:not(.lead-kicker) {
  max-width: 370px;

  margin: 0 auto 25px;

  color: #6c6259;
}

.lead-success-button {
  width: 100%;

  min-height: 53px;

  border: 0;

  border-radius: 999px;

  background: var(--ink);

  color: white;

  font-weight: 850;

  cursor: pointer;
}


/* =========================================================
   SAVE CONTACT DESKTOP MODAL
   ========================================================= */

.save-contact-modal {
  position: fixed;

  z-index: 3100;

  inset: 0;

  visibility: hidden;

  opacity: 0;

  display: grid;
  place-items: center;

  padding: 30px 20px;

  transition:
    opacity .22s ease,
    visibility .22s ease;
}

.save-contact-modal.is-open {
  visibility: visible;

  opacity: 1;
}

.save-contact-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(17,16,14,.78);

  backdrop-filter: blur(9px);
}

.save-contact-card {
  position: relative;

  z-index: 1;

  width: min(100%, 480px);

  max-height:
    calc(100dvh - 50px);

  overflow-y: auto;

  padding: 120px 35px 32px;

  border:
    1px solid
    rgba(255,255,255,.32);

  border-radius: 30px;

  background: var(--cream);

  color: var(--ink);

  box-shadow:
    0 35px 110px
    rgba(0,0,0,.4);

  transform:
    translateY(18px)
    scale(.985);

  transition:
    transform .24s ease;
}

.save-contact-modal.is-open
.save-contact-card {
  transform:
    translateY(0)
    scale(1);
}

.save-contact-close {
  position: absolute;

  top: 13px;
  right: 16px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;

  background: transparent;

  color: #625b55;

  font-size: 35px;

  font-weight: 300;

  line-height: 1;

  cursor: pointer;
}

.save-contact-avatar {
  position: absolute;

  top: 22px;
  left: 50%;

  width: 78px;
  height: 78px;

  transform:
    translateX(-50%);

  object-fit: cover;

  border: 5px solid var(--cream);

  border-radius: 50%;

  background: var(--paper-deep);

  box-shadow:
    0 10px 28px
    rgba(0,0,0,.18);
}

.save-contact-heading {
  padding-bottom: 23px;

  border-bottom:
    1px solid
    var(--line);

  text-align: center;
}

.save-contact-kicker {
  margin: 0 0 7px;

  color: var(--clay);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: .15em;

  text-transform: uppercase;
}

.save-contact-heading h2 {
  margin: 0 0 11px;

  font-size: 36px;
}

.save-contact-heading > p:last-child {
  max-width: 370px;

  margin: 0 auto;

  color: #6c6259;

  font-size: 14px;

  line-height: 1.55;
}

.save-contact-form {
  display: grid;

  gap: 13px;

  padding-top: 23px;
}

.save-contact-field {
  display: grid;

  gap: 6px;
}

.save-contact-field label {
  color: #514941;

  font-size: 11px;

  font-weight: 850;
}

.save-contact-field input {
  width: 100%;

  min-height: 52px;

  padding: 11px 14px;

  border:
    1px solid
    rgba(23,21,18,.18);

  border-radius: 11px;

  outline: none;

  background: white;

  color: var(--ink);

  font-size: 15px;

  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

.save-contact-field input:focus {
  border-color: var(--clay);

  box-shadow:
    0 0 0 4px
    rgba(167,101,69,.11);
}

.save-contact-submit {
  min-height: 54px;

  border: 0;

  border-radius: 999px;

  background: var(--ink);

  color: white;

  font-size: 14px;

  font-weight: 900;

  cursor: pointer;

  transition:
    background .18s ease,
    transform .18s ease;
}

.save-contact-submit:hover {
  transform: translateY(-1px);

  background: var(--clay-dark);
}

.save-contact-submit:disabled {
  cursor: wait;

  opacity: .7;
}

.save-contact-error {
  margin: 2px 0 0;

  padding: 10px;

  border-radius: 9px;

  background: #f5e4de;

  color: #743c2d;

  text-align: center;

  font-size: 12px;

  font-weight: 700;
}

.save-contact-divider {
  display: flex;

  align-items: center;

  gap: 13px;

  margin: 20px 0;

  color: #8b8178;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .08em;
}

.save-contact-divider::before,
.save-contact-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background: var(--line);
}

.save-contact-download {
  width: 100%;

  min-height: 53px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 11px 18px;

  border:
    1px solid
    var(--line);

  border-radius: 999px;

  background: transparent;

  color: var(--ink);

  font-size: 13px;

  font-weight: 850;

  text-align: center;

  text-decoration: none;

  transition:
    background .18s ease,
    border-color .18s ease;
}

.save-contact-download:hover {
  border-color: var(--clay);

  background: #fbf4ec;
}


/* =========================================================
   SAVE CONTACT SUCCESS
   ========================================================= */

.save-contact-success {
  text-align: center;
}

.save-contact-success-icon {
  width: 62px;

  height: 62px;

  margin: 0 auto 20px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--sage);

  color: white;

  font-size: 27px;

  font-weight: 900;
}

.save-contact-success h2 {
  margin: 0 0 12px;

  font-size: 38px;
}

.save-contact-success > p:not(.save-contact-kicker) {
  margin: 0 auto 25px;

  color: #6c6259;
}

.save-contact-finish {
  width: 100%;

  min-height: 51px;

  margin-top: 10px;

  border: 0;

  border-radius: 999px;

  background: transparent;

  color: #6c6259;

  font-size: 12px;

  font-weight: 850;

  cursor: pointer;
}


/* =========================================================
   CONNECT FOOTER
   ========================================================= */

.connect-footer {
  padding: 15px 20px 45px;

  color: #756a60;

  text-align: center;

  font-size: 12px;
}

.connect-footer a {
  font-weight: 800;

  text-underline-offset: 3px;
}

.connect-footer span {
  padding: 0 5px;
}

.connect-footer p {
  margin: 8px 0 0;
}


/* =========================================================
   CONNECT TABLET
   ========================================================= */

@media (max-width: 760px) {

  .digital-avatar {
    width: 150px;

    height: 150px;
  }

  .digital-intro {
    padding: 95px 28px 30px;
  }

  .digital-links {
    grid-template-columns:
      repeat(3, minmax(0,1fr));

    gap: 25px 14px;

    padding: 22px 28px 48px;
  }

  .digital-link-image {
    max-width: 105px;
  }

  .digital-bottom-cta {
    margin: 0 28px 38px;
  }

}


/* =========================================================
   CONNECT MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .connect-header {
    width: calc(100% - 28px);

    min-height: 66px;
  }

  .connect-brand {
    font-size: 13px;
  }

  .connect-brand small {
    font-size: 8px;
  }

  .connect-brand-mark {
    width: 35px;

    height: 35px;

    font-size: 18px;
  }

  .connect-home-link {
    font-size: 11px;
  }

  .digital-profile {
    padding: 0 0 40px;
  }

  .digital-card {
    border: 0;

    border-radius: 0;

    box-shadow: none;
  }

  .digital-avatar {
    width: 132px;

    height: 132px;

    border-width: 5px;
  }

  .digital-intro {
    padding: 83px 20px 28px;
  }

  .digital-intro h1 {
    font-size: 41px;
  }

  .digital-bio {
    font-size: 14px;

    line-height: 1.65;
  }

  .digital-links {
    grid-template-columns:
      repeat(3, minmax(0,1fr));

    gap: 23px 10px;

    padding: 20px 18px 38px;
  }

  .digital-link-image {
    width: min(100%, 92px);

    border-radius: 24%;
  }

  .digital-link > span:last-child {
    max-width: 100px;

    font-size: 10.5px;
  }

  .digital-bottom-cta {
    margin: 0 18px 30px;

    padding: 23px 18px;
  }


  /* LEAD FORM AS MOBILE BOTTOM SHEET */

  .lead-modal {
    align-items: end;

    padding: 0;
  }

  .lead-card {
    width: 100%;

    max-height: 93dvh;

    padding: 105px 20px 24px;

    border-radius:
      28px 28px 0 0;
  }

  .lead-avatar {
    top: 19px;

    width: 74px;

    height: 74px;
  }

  .lead-heading h2 {
    font-size: 29px;
  }

  .lead-heading > p:last-child {
    font-size: 13px;
  }

  .lead-form {
    gap: 11px;
  }

  .lead-field input,
  .lead-field textarea {
    font-size: 16px;
  }


  /* SAVE-CONTACT MODAL FALLBACK ON SMALL SCREENS */

  .save-contact-modal {
    align-items: end;

    padding: 0;
  }

  .save-contact-card {
    width: 100%;

    max-height: 93dvh;

    padding: 105px 20px 25px;

    border-radius:
      28px 28px 0 0;
  }

  .save-contact-avatar {
    top: 19px;

    width: 74px;

    height: 74px;
  }

  .save-contact-heading h2 {
    font-size: 30px;
  }

  .save-contact-field input {
    font-size: 16px;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 350px) {

  .digital-links {
    gap: 20px 7px;

    padding-inline: 12px;
  }

  .digital-link > span:last-child {
    font-size: 10px;
  }

  .connect-home-link {
    display: none;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

}
