:root {
  --ink: #11100e;
  --muted: #6d665c;
  --brand: #c9952f;
  --brand-dark: #8c641d;
  --gold-light: #f4d186;
  --sand: #f8f2e7;
  --cream: #fffaf1;
  --charcoal: #171411;
  --white: #ffffff;
  --line: rgba(17, 16, 14, 0.12);
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf1 0%, #ffffff 40%, #f8f2e7 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(201, 149, 47, 0.35);
  background: var(--charcoal);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  letter-spacing: -0.03em;
}

.brand-text small,
.small-note,
.form-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.nav a:hover {
  color: var(--brand-dark);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--charcoal);
}

.section-pad {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(201, 149, 47, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(17, 16, 14, 0.08), transparent 28%);
}

.hero-content,
.profile-panel,
.intro-grid,
.split-section,
.area-section,
.checklist-section,
.service-section,
.decision-section,
.contact-section {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6.4vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-subtitle,
.section-heading p,
.split-copy > p,
.contact-copy > p,
.decision-card p,
.intro-grid > div > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--brand));
  box-shadow: 0 14px 34px rgba(201, 149, 47, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.profile-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
  min-height: 600px;
  border: 1px solid rgba(201, 149, 47, 0.24);
  background:
    linear-gradient(145deg, rgba(23, 20, 17, 0.98), rgba(46, 36, 25, 0.96)),
    var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 34px;
  overflow: hidden;
}

.profile-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
  transform: scale(1.04);
}

.profile-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(28px, 4vw, 44px);
}

.profile-logo {
  width: 82px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(244, 209, 134, 0.35);
  margin-bottom: 18px;
}

.profile-kicker {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.profile-card-copy h2 {
  color: var(--white);
  margin-bottom: 0;
}

.profile-card-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.profile-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.profile-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 750;
}

.profile-links a:hover {
  text-decoration: underline;
}

.hero-card,
.highlight-panel,
.decision-card,
.lead-form,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.hero-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-dark);
  font-weight: 900;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.card-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.9rem;
}

.card p,
.area-grid p,
.service-section p,
.site-footer p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--sand);
}

.highlight-panel {
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(150deg, var(--charcoal), #392919);
  color: var(--white);
  border-color: rgba(244, 209, 134, 0.22);
}

.highlight-panel p,
.highlight-panel span {
  color: rgba(255, 255, 255, 0.76);
}

.mini-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-metrics div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.area-grid article {
  min-height: 186px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white), #fffaf1);
  border: 1px solid var(--line);
}

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

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.check-list.large {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.feature {
  background: linear-gradient(180deg, #ffffff, #fbf8f4);
}

.decision-section {
  padding-top: 40px;
}

.decision-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 149, 47, 0.12), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(17, 16, 14, 0.08), transparent 30%),
    var(--white);
}

.decision-card p {
  margin-inline: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff, var(--sand));
}

.contact-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  box-shadow: none;
}

.contact-profile-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
}

.contact-profile-row img {
  width: 64px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--charcoal);
}

.contact-profile-row strong,
.contact-profile-row span {
  display: block;
}

.contact-profile-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.contact-methods a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.contact-methods a:hover {
  color: var(--brand-dark);
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(201, 149, 47, 0.18);
  border-color: var(--brand);
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer span,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

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

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer p {
  max-width: 1100px;
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 1120px) {
  .profile-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .profile-photo-wrap {
    min-height: 420px;
  }

  .profile-photo {
    object-position: 60% 12%;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-panel {
    max-width: 740px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-text small {
    display: none;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .cards.three,
  .area-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .profile-photo-wrap {
    min-height: 360px;
  }

  .contact-profile-row {
    grid-template-columns: 1fr;
  }
}


.form-heading {
  margin-bottom: 1.2rem;
}

.form-heading h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.form-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.hubspot-form-card {
  min-height: 520px;
}

#hubspot-pcs-form {
  width: 100%;
}

#hubspot-pcs-form .hs-form,
#hubspot-pcs-form form {
  width: 100% !important;
}
