:root {
  --ink: #17201d;
  --muted: #5e6a64;
  --paper: #f6f3ed;
  --white: #fffdf9;
  --sage: #718271;
  --sage-dark: #314238;
  --clay: #b46f4f;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(22, 32, 29, 0.14);
  --content: 1180px;
  --readable: 760px;
}

* {
  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: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 8px 24px rgba(23, 32, 29, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

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

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 28px);
  font-size: 0.92rem;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 80px) 11vh;
  overflow: hidden;
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 27, 24, 0.78), rgba(18, 27, 24, 0.28) 58%, rgba(18, 27, 24, 0.08)),
    linear-gradient(0deg, rgba(18, 27, 24, 0.42), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 58vw);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c5ad;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.7vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.secondary {
  border-color: rgba(255, 253, 249, 0.62);
  color: var(--white);
}

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

.button.secondary.dark {
  border-color: rgba(23, 32, 29, 0.32);
  color: var(--ink);
}

section {
  padding: clamp(68px, 9vw, 132px) clamp(20px, 6vw, 80px);
}

.intro > *,
.offers > *,
.process > *,
.practice-gallery,
.prices > *,
.location > * {
  width: min(var(--content), 100%);
  margin-left: auto;
  margin-right: auto;
}

.readable-grid {
  max-width: 1040px;
}

.intro,
.offers,
.process,
.practice-gallery,
.location {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.intro-grid p,
.approach-copy p,
.profile p,
.price-copy p,
.location-card p,
.contact-band p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: var(--readable);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.compact-heading {
  margin-bottom: 28px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 243, 237, 0.42), rgba(255, 253, 249, 0));
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 118px;
  height: 118px;
  color: var(--sage-dark);
  opacity: 0.12;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 0;
}

.offer-icon circle {
  fill: none;
}

.offer-number {
  display: block;
  margin-bottom: 56px;
  color: var(--clay);
  font-weight: 900;
}

.offer-card p,
.process-steps p {
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 620px);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  background: #eef0eb;
}

.approach-media {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.approach-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.check-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(23, 32, 29, 0.14);
  font-weight: 750;
}

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

.process-steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-weight: 900;
}

.practice-gallery {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.practice-gallery figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(22, 32, 29, 0.08);
}

.practice-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  display: grid;
  align-content: center;
  padding: clamp(20px, 4vw, 42px) 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 5vw, 56px);
}

.gallery-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  overflow-wrap: anywhere;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 650px);
  gap: clamp(32px, 5vw, 68px);
  justify-content: center;
  color: var(--white);
  background: var(--sage-dark);
}

.profile .section-kicker {
  color: #e9bca3;
}

.profile p,
.profile .profile-lead {
  color: rgba(255, 253, 249, 0.76);
}

.profile-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.profile-photo {
  margin: 0 0 28px;
  width: min(320px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: right center;
}

.profile-lead {
  font-size: 1.1rem;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 249, 0.18);
}

.timeline div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.18);
}

.timeline span {
  color: #e9bca3;
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.prices {
  background: #f0eee7;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(22, 32, 29, 0.08);
}

.price-main {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  background: var(--sage-dark);
  color: var(--white);
}

.price-main span,
.price-main p {
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
  font-weight: 800;
}

.price-main strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 1;
}

.price-copy {
  align-self: center;
}

.notice {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  background: #f8f2ee;
  color: var(--ink) !important;
  font-weight: 700;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.map-copy {
  align-self: center;
  max-width: 640px;
}

.map-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.google-map {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.google-map iframe {
  display: block;
  width: 100%;
  height: min(52vw, 460px);
  min-height: 320px;
  border: 0;
}

.map-preview {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(113, 130, 113, 0.14), transparent 38%),
    linear-gradient(45deg, transparent 42%, rgba(180, 111, 79, 0.16) 43%, rgba(180, 111, 79, 0.16) 45%, transparent 46%),
    #eef2ee;
}

.map-line {
  position: absolute;
  background: rgba(49, 66, 56, 0.16);
}

.map-line.horizontal {
  left: -8%;
  right: -8%;
  height: 22px;
  transform: rotate(-7deg);
}

.map-line.top {
  top: 24%;
}

.map-line.bottom {
  bottom: 20%;
  transform: rotate(9deg);
}

.map-line.vertical {
  top: -10%;
  bottom: -10%;
  width: 22px;
}

.map-line.left {
  left: 27%;
  transform: rotate(7deg);
}

.map-line.right {
  right: 22%;
  transform: rotate(-11deg);
}

.map-water {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 34%;
  height: 18%;
  border-radius: 999px;
  background: rgba(95, 151, 168, 0.16);
  transform: rotate(-12deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 45%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(180, 111, 79, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--white);
}

.map-label {
  position: absolute;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(22, 32, 29, 0.08);
}

.label-main {
  left: 42%;
  top: 56%;
}

.label-road {
  left: 16%;
  top: 31%;
}

.label-place {
  right: 12%;
  bottom: 16%;
}

.location-card {
  align-self: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.location-type {
  margin-bottom: 10px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 28px;
}

.rating strong {
  font-size: 1.15rem;
}

.rating span {
  color: #d99a1b;
  letter-spacing: 0;
}

.rating small {
  color: var(--muted);
}

.business-data {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.business-data div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.business-data dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.business-data dd {
  margin: 0;
  color: var(--muted);
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--white);
}

.contact-band.narrow-section {
  max-width: calc(var(--content) + clamp(40px, 12vw, 160px));
  margin-left: auto;
  margin-right: auto;
}

.contact-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  overflow-wrap: anywhere;
}

.contact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(22, 32, 29, 0.1);
}

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

.contact-details {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-band .contact-actions {
  grid-column: 2;
  margin-top: -12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: rgba(255, 253, 249, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.legal-page {
  background: var(--white);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-brand {
  color: var(--ink);
}

.legal-main {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 80px);
}

.legal-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 16px 18px;
  border-left: 4px solid var(--clay);
  background: var(--paper);
}

@media (max-width: 980px) {
  .offer-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .section-heading,
  .approach,
  .practice-gallery,
  .profile,
  .price-panel,
  .location-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .profile-intro {
    position: static;
  }

  .contact-band {
    display: grid;
  }

  .contact-band .contact-actions {
    grid-column: auto;
    margin-top: 0;
  }

  .hero-content {
    width: min(760px, 100%);
  }

  h1 {
    font-size: clamp(3rem, 9vw, 5rem);
    overflow-wrap: normal;
  }
}

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

  .brand {
    min-width: 0;
    max-width: calc(100vw - 92px);
  }

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

  .brand small {
    font-size: 0.68rem;
  }

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 86vh;
    padding: 112px 18px 54px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
    line-height: 1.02;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .hero-copy {
    max-width: 33ch;
    font-size: 1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 27, 24, 0.48), rgba(18, 27, 24, 0.78)),
      linear-gradient(90deg, rgba(18, 27, 24, 0.42), transparent);
  }

  .offer-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 8px;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-number {
    margin-bottom: 44px;
  }

  .approach-media {
    min-height: 320px;
  }

  .practice-gallery figure {
    min-height: 300px;
  }

  .gallery-copy {
    padding: 0;
    border-left: 0;
  }

  .gallery-copy h2,
  .contact-band h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-preview {
    min-height: 330px;
  }

  .site-footer {
    display: grid;
  }

  .legal-header {
    display: grid;
  }
}
