:root {
  --ink: #17212f;
  --muted: #677386;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e2ded5;
  --navy: #172a43;
  --navy-soft: #223a58;
  --green: #5c745d;
  --sage: #dfe7db;
  --gold: #b68a48;
  --gold-soft: #efe1c8;
  --shadow: 0 24px 70px rgba(23, 33, 47, 0.14);
  --soft-shadow: 0 14px 36px rgba(23, 33, 47, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.72), rgba(8, 17, 31, 0));
  transition: background 0.2s ease, box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(23, 42, 67, 0.97);
  box-shadow: 0 14px 32px rgba(8, 17, 31, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand img {
  width: 54px;
  height: 48px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  image-rendering: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.header-call:hover {
  background: var(--white);
  color: var(--navy);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: 172px clamp(20px, 6vw, 86px) 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 31, 0.94) 0%, rgba(9, 18, 31, 0.78) 38%, rgba(9, 18, 31, 0.22) 74%),
    linear-gradient(0deg, rgba(9, 18, 31, 0.62), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
}

.hero .eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 88px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  background: var(--gold);
  color: #10151d;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.intro,
.owner,
.staff,
.services,
.location,
.contact {
  padding: 104px clamp(20px, 7vw, 110px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  background: var(--white);
}

.intro,
.staff,
.location {
  position: relative;
}

.intro::before,
.staff::before,
.location::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 7vw, 110px);
  right: clamp(20px, 7vw, 110px);
  height: 1px;
  background: var(--line);
  content: "";
}

.intro h2,
.section-heading h2,
.location h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(35px, 4.3vw, 64px);
}

.intro > p,
.owner-copy p,
.location-copy > p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.owner {
  background: linear-gradient(135deg, var(--paper), #f3f5ef);
}

.owner-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 4.5vw, 58px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.associate-box {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.associate-box .eyebrow {
  margin-bottom: 14px;
}

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

.associate-list article {
  padding: 18px 20px;
  border: 1px solid rgba(226, 222, 213, 0.9);
  border-radius: 12px;
  background: var(--white);
}

.associate-list strong,
.associate-list span,
.associate-list small {
  display: block;
}

.associate-list strong {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.associate-list span {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.associate-list small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.owner-photo {
  position: relative;
  aspect-ratio: 1;
  min-height: 230px;
  padding: 10px;
  border: 1px solid rgba(92, 116, 93, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--white), #f5f0e6);
  box-shadow: var(--soft-shadow);
}

.owner-photo::after {
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  pointer-events: none;
  content: "";
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.owner-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 58px);
}

.owner-copy p {
  max-width: 650px;
  margin-bottom: 18px;
}

.owner-credential {
  display: inline-grid;
  gap: 2px;
  min-width: min(100%, 360px);
  margin-bottom: 22px;
  padding: 15px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: var(--paper);
}

.owner-credential span,
.owner-credential small {
  display: block;
}

.owner-credential span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.owner-credential strong {
  font-size: 18px;
  line-height: 1.25;
}

.owner-credential small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.owner-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.owner-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.owner-social a:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.owner-social svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: #0a66c2;
  fill: var(--white);
}

.staff {
  background: var(--white);
}

.staff-heading {
  grid-template-columns: minmax(300px, 800px) minmax(160px, 1fr);
}

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

.staff-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.staff-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.staff-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
}

.staff-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.services {
  background: linear-gradient(180deg, #f2f0ea, #faf8f2);
}

.section-heading.services-heading {
  display: block;
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.services-heading .eyebrow {
  justify-content: center;
}

.section-heading.services-heading h2 {
  font-size: clamp(42px, 5vw, 78px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 710px) minmax(220px, 1fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 44px;
}

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

.service-grid article {
  min-height: 315px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  background: #fff8ec;
  color: var(--green);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-grid article:nth-child(1) .service-icon {
  color: #5f6f56;
  background: #f7f3e9;
}

.service-grid article:nth-child(2) .service-icon {
  color: #285a6b;
  background: #eaf3f5;
}

.service-grid article:nth-child(3) .service-icon {
  color: #7a5a1f;
  background: #fbf0d8;
}

.service-grid article:nth-child(4) .service-icon {
  color: var(--navy);
  background: #eef1f6;
}

.service-grid article:nth-child(5) .service-icon {
  color: #5d6f41;
  background: #edf4de;
}

.service-grid article:nth-child(6) .service-icon {
  color: #6d4b7f;
  background: #f0e8f5;
}

.service-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, #14253b, var(--navy-soft));
  color: var(--white);
}

.trust-band div {
  min-height: 178px;
  padding: 34px clamp(20px, 5vw, 70px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.location-copy h2 {
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-list a:hover {
  border-color: var(--gold);
  transform: translateX(3px);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-panel {
  min-height: 520px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 496px;
  border: 0;
  filter: saturate(0.85);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(223, 231, 219, 0.92), rgba(246, 243, 236, 0.96)),
    linear-gradient(90deg, rgba(182, 138, 72, 0.16), transparent);
}

.contact h2 {
  margin-bottom: 20px;
}

.contact-panels {
  display: grid;
  gap: 14px;
}

.phone-panel {
  display: block;
  padding: 34px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.email-panel {
  background: var(--green);
}

.phone-panel span,
.phone-panel strong,
.phone-panel small {
  display: block;
}

.phone-panel span {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-panel strong {
  margin-bottom: 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.phone-panel small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 26px clamp(20px, 7vw, 110px);
  background: var(--white);
  color: var(--navy);
  border-top: 1px solid var(--line);
}

.footer-logo-panel {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 12px;
  background: transparent;
}

.footer-brand {
  display: block;
  width: min(100%, 118px);
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  image-rendering: auto;
}

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

.footer-info {
  display: grid;
  gap: 12px;
}

.footer-info a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--navy);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.2;
}

.footer-info span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.footer-info strong {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-info p {
  margin: 8px 0 0;
  color: var(--navy-soft);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 18px;
  }

  .header-call {
    margin-left: 22px;
  }

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

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

  .owner-card {
    grid-template-columns: 1fr;
  }

  .associate-box {
    max-width: 100%;
  }

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

  .map-panel {
    min-height: 420px;
  }

  .map-panel iframe {
    height: 396px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 12px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 42px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 14px;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 24px;
    background: var(--navy);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding: 124px 20px 74px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 18, 31, 0.92), rgba(9, 18, 31, 0.54)),
      linear-gradient(0deg, rgba(9, 18, 31, 0.7), transparent 42%);
  }

  .hero h1 {
    font-size: clamp(36px, 10.6vw, 50px);
  }

  .intro,
  .services,
  .owner,
  .staff,
  .location,
  .contact {
    padding: 76px 20px;
  }

  .intro,
  .section-heading,
  .staff-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid,
  .staff-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .owner-card {
    padding: 20px;
  }

  .associate-list {
    grid-template-columns: 1fr;
  }

  .owner-photo {
    min-height: 210px;
  }

  .staff-grid article {
    min-height: 0;
  }

  .service-grid article {
    min-height: 0;
    padding: 26px;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .trust-band div {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .map-panel {
    min-height: 360px;
    padding: 8px;
  }

  .map-panel iframe {
    height: 344px;
  }

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

  .footer-logo-panel {
    min-height: 82px;
    justify-items: start;
  }

  .footer-brand {
    width: min(100%, 110px);
  }

  .footer-info a {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 720px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-panel {
    padding: 26px;
  }

  .site-footer {
    padding: 24px 20px;
  }
}
