:root {
  --maroon: #550f18;
  --maroon-dark: #25060a;
  --gold: #c99b38;
  --gold-light: #f0d58b;
  --ink: #142027;
  --muted: #637071;
  --cream: #fff8ea;
  --paper: #fffdf8;
  --teal: #176b68;
  --line: rgba(20, 32, 39, 0.13);
  --shadow: 0 24px 70px rgba(20, 32, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.disclaimer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 32, 39, 0.78);
  backdrop-filter: blur(8px);
}

.disclaimer.is-hidden {
  display: none;
}

.disclaimer__panel {
  width: min(720px, 100%);
  background: var(--paper);
  border: 1px solid rgba(201, 155, 56, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 46px);
}

.disclaimer__logo {
  width: 92px;
  border-radius: 50%;
  margin-bottom: 18px;
}

.disclaimer h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.12;
}

.disclaimer__actions,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.brand:hover .brand__mark {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 8px 20px rgba(85, 15, 24, 0.18);
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #263236;
  font-size: 0.92rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 64px) clamp(28px, 5vw, 60px);
  background:
    linear-gradient(90deg, rgba(37, 6, 10, 0.96) 0%, rgba(85, 15, 24, 0.9) 35%, rgba(20, 32, 39, 0.46) 68%, rgba(20, 32, 39, 0.12) 100%),
    url("profile pic/HERO BANNER.jpg") center right / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(to top, rgba(255, 253, 248, 1), rgba(255, 253, 248, 0));
}

.hero__media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero__media img {
  width: min(430px, 76vw);
  border-radius: 50%;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
  animation: sealFloat 5.5s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: riseIn 780ms ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  max-width: 720px;
}

.hero__lead {
  margin: 16px 0 0;
  color: var(--gold-light);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-weight: 700;
}

.hero__quote {
  margin: 10px 0 0;
  color: #fff7de;
  font-size: clamp(1.06rem, 2vw, 1.45rem);
}

.hero__quote span {
  color: var(--gold-light);
}

.hero__text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--gold);
  color: #1d1710;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-light);
}

.button--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button--ghost {
  border-color: var(--line);
  color: var(--ink);
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__metrics span {
  min-width: 144px;
  border: 1px solid rgba(240, 213, 139, 0.32);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.hero__metrics strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.28rem;
}

.quick-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -24px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-bar a {
  padding: 18px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease;
}

.quick-bar a:hover,
.quick-bar a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.quick-bar a:nth-child(2) {
  background: var(--maroon);
}

.quick-bar a:nth-child(3) {
  background: var(--ink);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--maroon-dark);
}

.section p {
  color: var(--muted);
}

.split,
.profile-band,
.form-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.value-grid,
.service-grid,
.practice-list,
.location-grid,
.update-grid {
  display: grid;
  gap: 16px;
}

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

.value-grid article,
.service-grid article,
.practice-list article,
.location-grid article,
.update-grid article,
.profile-card,
.contact-card,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 32, 39, 0.07);
}

.value-grid article,
.service-grid article,
.practice-list article,
.location-grid article,
.update-grid article,
.profile-card,
.contact-card {
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-grid article:hover,
.service-grid article:hover,
.practice-list article:hover,
.location-grid article:hover,
.update-grid article:hover,
.profile-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 155, 56, 0.45);
  box-shadow: 0 18px 42px rgba(20, 32, 39, 0.12);
}

.value-grid span,
.location-grid span {
  color: var(--gold);
  font-weight: 800;
}

h3 {
  margin: 0 0 8px;
  color: var(--maroon-dark);
  line-height: 1.2;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.profile-band,
.fee-section,
.updates {
  background: var(--cream);
}

.profile-band {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
}

.profile-card img {
  width: min(100%, 340px);
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}

.profile-photo {
  aspect-ratio: 3 / 4;
  border: 4px solid var(--gold-light);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 32, 39, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.profile-card:hover .profile-photo {
  transform: scale(1.018);
  box-shadow: 0 22px 46px rgba(20, 32, 39, 0.2);
}

.profile-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
  color: var(--muted);
}

.practice-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.fee-table {
  max-width: 980px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.fee-row {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.35fr);
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.fee-row:last-child {
  border-bottom: 0;
}

.fee-row--head {
  background: var(--maroon);
  color: #fff;
  font-weight: 800;
}

.smart-form,
.appointment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 32, 39, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 155, 56, 0.26);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.notice {
  margin-top: 22px;
  padding: 16px;
  border-left: 5px solid var(--gold);
  color: var(--ink);
}

.appointment {
  max-width: 980px;
  margin-top: 28px;
}

.location-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.location-grid a {
  color: var(--teal);
  font-weight: 800;
}

.update-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.update-grid p {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 800;
}

.update-grid span {
  color: var(--muted);
}

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

.contact-card a {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--maroon);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  float: left;
  margin-right: 14px;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.float-actions a {
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--maroon);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
  transition: transform 180ms ease, filter 180ms ease;
}

.float-actions a:hover,
.float-actions a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.float-actions a:last-child {
  background: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .value-grid article,
.reveal.is-visible .service-grid article,
.reveal.is-visible .practice-list article,
.reveal.is-visible .location-grid article,
.reveal.is-visible .update-grid article,
.reveal.is-visible .fee-row {
  animation: itemRise 520ms ease both;
}

.reveal.is-visible article:nth-child(2),
.reveal.is-visible .fee-row:nth-child(2) {
  animation-delay: 70ms;
}

.reveal.is-visible article:nth-child(3),
.reveal.is-visible .fee-row:nth-child(3) {
  animation-delay: 140ms;
}

.reveal.is-visible article:nth-child(4),
.reveal.is-visible .fee-row:nth-child(4) {
  animation-delay: 210ms;
}

.reveal.is-visible article:nth-child(5),
.reveal.is-visible .fee-row:nth-child(5) {
  animation-delay: 280ms;
}

.reveal.is-visible article:nth-child(6),
.reveal.is-visible .fee-row:nth-child(6) {
  animation-delay: 350ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes itemRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sealFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero__media {
    order: -1;
  }

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

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .site-nav,
  .quick-bar,
  .value-grid,
  .service-grid,
  .practice-list,
  .location-grid,
  .update-grid,
  .smart-form,
  .appointment,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .hero__media img {
    width: min(300px, 72vw);
  }

  .hero__metrics span,
  .button,
  .quick-bar a {
    width: 100%;
  }

  .fee-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .float-actions {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-actions a {
    min-width: 0;
  }
}
