:root {
  --blue: #123f5c;
  --blue-dark: #0a2638;
  --blue-soft: #eaf3f7;
  --green: #2f805a;
  --green-dark: #203326;
  --green-soft: #edf5ef;
  --gold: #c99628;
  --gold-soft: #f8efd9;
  --ink: #17202a;
  --muted: #63717c;
  --line: #dce6e1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 63, 92, 0.14);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdfc 0%, #f4f8f5 46%, #ffffff 100%);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2 {
  color: var(--blue-dark);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

a,
span,
strong {
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 36px, var(--max));
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(220, 230, 225, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 46px rgba(18, 63, 92, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 120px;
  height: 74px;
  overflow: visible;
}

.brand img {
  width: 110px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

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

.site-nav a,
.site-nav span {
  border-radius: 999px;
  padding: 12px 15px;
  color: var(--blue-dark);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--blue-soft);
  color: var(--blue);
}

.site-nav .nav-phone {
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.site-nav .nav-appointment {
  background: linear-gradient(135deg, var(--gold), #d9b45f);
  color: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(201, 150, 40, 0.22);
}

.site-nav .nav-appointment:hover {
  background: linear-gradient(135deg, #d9b45f, var(--gold));
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-dark);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 92px 0 70px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -74px;
  left: -96px;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 40, 0.18), rgba(201, 150, 40, 0));
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 730px;
  margin-bottom: 34px;
  color: #40515c;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--green-dark));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(18, 63, 92, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.profile-photo-wrap {
  padding: 20px 20px 0;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 22px;
  object-fit: cover;
  background: var(--green-soft);
}

.profile-card-body {
  padding: 26px;
}

.profile-card-body h2 {
  font-size: 1.75rem;
}

.profile-role {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 800;
}

.intro-panel,
.highlight,
.examples-panel,
.local-seo-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 92px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.local-seo-panel {
  display: block;
}

.local-seo-panel h2,
.local-seo-panel p {
  max-width: 850px;
}

.local-seo-panel a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.inline-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 92px;
}

.contact-strip-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 63, 92, 0.06);
}

.contact-strip-item span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-strip-item strong {
  color: var(--blue-dark);
  font-size: 1.02rem;
}

.appointment-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 92px;
  border: 1px solid rgba(201, 150, 40, 0.34);
  border-radius: 32px;
  padding: 46px;
  background: radial-gradient(circle at 85% 20%, rgba(201, 150, 40, 0.18), transparent 34%), linear-gradient(135deg, #ffffff, #f6faf7);
  box-shadow: var(--shadow);
}

.appointment-panel h2 {
  margin-bottom: 14px;
}

.appointment-panel p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.appointment-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.appointment-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.calendly-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--blue), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(18, 63, 92, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calendly-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 63, 92, 0.26);
}

.calendly-section {
  margin-bottom: 96px;
}

.calendly-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  width: 100%;
}

.intro-panel p:last-child,
.highlight p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.cards-section {
  margin-bottom: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

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

.city-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 63, 92, 0.06);
}

.city-card h3 {
  color: var(--green-dark);
}

.city-card p {
  margin-bottom: 0;
}

.city-list-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.city-list-panel p {
  max-width: 860px;
  margin-bottom: 24px;
}

.city-list-panel .inline-link {
  display: inline-flex;
  margin-bottom: 24px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(18, 63, 92, 0.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 900;
}

.benefits {
  display: grid;
  gap: 20px;
}

.benefits div {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}

.benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
}

.benefits p {
  margin-bottom: 0;
}

.cta {
  margin-bottom: 94px;
  padding: 66px 34px;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 0%, rgba(201, 150, 40, 0.28), transparent 34%), linear-gradient(135deg, var(--blue-dark), var(--green-dark));
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2,
.cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.cta .eyebrow {
  color: #f2d67f;
}

.page-hero {
  padding: 88px 0 54px;
}

.page-hero p:not(.eyebrow) {
  max-width: 790px;
  font-size: 1.16rem;
}

.service-list {
  display: grid;
  gap: 16px;
  margin-bottom: 90px;
}

.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 63, 92, 0.06);
}

.service-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.service-item h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.service-item p {
  margin-bottom: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #40515c;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--gold-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 96px;
}

.contact-card,
.contact-form,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form h2,
.legal-content h2 {
  font-size: 2rem;
}

.contact-line {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 18px;
  background: var(--green-soft);
}

.contact-line span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.muted,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-message {
  align-content: start;
  gap: 18px;
}

.email-callout {
  display: block;
  border: 1px solid rgba(201, 150, 40, 0.28);
  border-radius: 18px;
  padding: 18px;
  background: var(--gold-soft);
  color: var(--blue-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  word-break: break-word;
}

.email-callout.icon-label {
  display: flex;
  width: 100%;
}

.check-list.compact {
  gap: 8px;
  margin-bottom: 10px;
}

label {
  color: var(--blue-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 128, 90, 0.16);
}

textarea {
  resize: vertical;
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-content {
  margin-bottom: 94px;
}

.legal-content h2:not(:first-child) {
  margin-top: 36px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

.icon-label,
.linkedin-link,
.facebook-link,
.calendly-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-label::before,
.linkedin-link::before,
.facebook-link::before,
.calendly-icon::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 22px;
}

.phone-icon::before {
  content: "☎";
  background: var(--green);
  font-size: 12px;
}

.mail-icon::before {
  content: "@";
  background: var(--gold);
  font-size: 14px;
}

.linkedin-link::before {
  content: "in";
  background: #0a66c2;
}

.facebook-link::before {
  content: "f";
  background: #1877f2;
  border-radius: 50%;
  font-size: 16px;
}

.calendly-icon::before {
  content: "C";
  background: #006bff;
  border-radius: 50%;
  font-size: 14px;
}

.site-footer .linkedin-link,
.site-footer .facebook-link,
.site-footer .calendly-icon,
.site-footer .icon-label,
.contact-line .linkedin-link,
.contact-line .facebook-link,
.contact-line .calendly-icon,
.contact-line .icon-label,
.legal-content .linkedin-link,
.legal-content .facebook-link,
.legal-content .calendly-icon,
.legal-content .icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  width: min(100% - 36px, var(--max));
  margin: 0 auto 28px;
  border-radius: 28px;
  padding: 36px;
  background: var(--blue-dark);
  color: var(--white);
}

.site-footer img {
  width: 140px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--white);
}

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

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #f2d67f;
}

.site-footer .linkedin-link,
.site-footer .facebook-link,
.site-footer .calendly-icon,
.site-footer .icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    margin-top: 12px;
  }

  .brand img {
    width: 130px;
    height: 90px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav span {
    text-align: center;
  }

  .hero,
  .intro-panel,
  .highlight,
  .examples-panel,
  .local-seo-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

@media (min-width: 901px) and (max-width: 1120px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    width: 104px;
    height: 62px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a,
  .site-nav span {
    padding: 10px 10px;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 30px;
  }

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

  .card {
    padding: 24px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav span {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.7rem);
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-panel,
  .highlight,
  .examples-panel,
  .local-seo-panel,
  .city-list-panel,
  .contact-strip-item,
  .appointment-panel,
  .contact-card,
  .contact-form,
  .legal-content {
    padding: 26px;
  }

  .service-item {
    grid-template-columns: 1fr;
    padding: 26px;
  }

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

  .page-hero {
    padding-top: 56px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 8px 12px;
  }

  .brand {
    width: 96px;
    height: 64px;
  }

  .brand img {
    width: 90px;
    height: 54px;
  }

  .hero {
    padding-top: 44px;
  }

  .card,
  .city-card,
  .service-item,
  .intro-panel,
  .highlight,
  .examples-panel,
  .local-seo-panel,
  .contact-card,
  .contact-form,
  .legal-content {
    padding: 22px;
  }
}
