:root {
  --paper: #fbf7ef;
  --surface: #fffdf8;
  --ink: #26332f;
  --muted: #66736d;
  --sage: #78927f;
  --moss: #516d5c;
  --coral: #d98571;
  --clay: #b96d59;
  --line: #e4dacf;
  --shadow: 0 22px 60px rgba(38, 51, 47, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 133, 113, 0.72);
  outline-offset: 4px;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-140%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(251, 247, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 218, 207, 0.8);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 0 5vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--moss);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 1.3rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav .nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  padding: 0.68rem 1rem;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  width: 44px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.94) 0%, rgba(251, 247, 239, 0.76) 38%, rgba(251, 247, 239, 0.16) 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.hero-content {
  align-self: center;
  max-width: 760px;
  padding: 8vh 5vw 14vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  margin-bottom: 1.2rem;
  max-width: 720px;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.hero-copy {
  color: #48564f;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.18rem;
  text-decoration: none;
}

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

.button.primary:hover {
  background: #425a4c;
}

.button.ghost {
  background: rgba(255, 253, 248, 0.76);
  border-color: rgba(81, 109, 92, 0.25);
  color: var(--ink);
}

.button.wide {
  margin-top: 1.5rem;
  width: fit-content;
}

.hero-card {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(228, 218, 207, 0.9);
  border-radius: var(--radius);
  bottom: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.18rem;
  max-width: calc(100vw - 2rem);
  padding: 1rem;
  position: absolute;
  right: 5vw;
  width: 310px;
  z-index: 1;
}

.hero-card span,
.contact-row > span:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card a {
  font-weight: 750;
  text-decoration-color: rgba(81, 109, 92, 0.35);
  text-underline-offset: 4px;
}

.section {
  padding: 7.5rem 5vw;
}

section[id] {
  scroll-margin-top: 92px;
}

.intro {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.intro-text p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 3.6rem);
  line-height: 1.08;
}

.intro-facts {
  border-top: 1px solid var(--line);
}

.intro-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 170px 1fr;
  padding: 1.25rem 0;
}

.intro-facts strong {
  color: var(--moss);
}

.intro-facts span,
.service-card p,
.area-copy p,
.steps span,
.site-footer p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.about-section {
  align-items: center;
  background: #edf0eb;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
  padding-bottom: 5.5rem;
  padding-top: 5.5rem;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  max-height: 440px;
  max-width: 420px;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  background: linear-gradient(180deg, transparent 55%, rgba(38, 51, 47, 0.2));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-photo img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: 45% center;
  width: 100%;
}

.about-copy {
  max-width: 720px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 620px;
}

.about-facts {
  border-top: 1px solid rgba(81, 109, 92, 0.24);
  display: grid;
  margin-top: 2rem;
}

.about-facts div {
  border-bottom: 1px solid rgba(81, 109, 92, 0.24);
  display: grid;
  gap: 1rem;
  grid-template-columns: 230px 1fr;
  padding: 1.05rem 0;
}

.about-facts strong {
  color: var(--moss);
}

.about-facts span {
  color: var(--muted);
}

.split-section {
  background: var(--surface);
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

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

.service-card {
  background: #f6efe5;
  border: 1px solid rgba(228, 218, 207, 0.9);
  border-radius: var(--radius);
  min-height: 230px;
  padding: 1.35rem;
}

.service-icon {
  color: var(--coral);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.area-section {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.area-copy p {
  font-size: 1.08rem;
  max-width: 680px;
}

.place-board {
  background: transparent;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
}

.place-card {
  background: #f7f1e8;
  border: 1px solid rgba(81, 109, 92, 0.13);
  color: var(--ink);
  display: grid;
  min-height: 190px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-decoration: none;
}

.place-card:nth-child(2) {
  background: #f7e0d8;
}

.place-card:nth-child(3) {
  background: #e8eee7;
}

.place-card:nth-child(4) {
  background: #f8ead8;
}

.place-card:nth-child(5) {
  background: #f1ece4;
}

.place-card:nth-child(6) {
  background: #eef1ea;
}

.place-card:hover {
  filter: brightness(0.97);
}

.place-label {
  align-self: start;
  color: rgba(38, 51, 47, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.place-name {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.55vw, 2.08rem);
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.place-graphic {
  color: rgba(38, 51, 47, 0.42);
  height: 78%;
  position: absolute;
  right: -10%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  top: 9%;
  width: 92%;
}

.place-graphic path {
  fill: none;
  opacity: 0.22;
}

.place-card:nth-child(2) .place-graphic {
  right: -14%;
  top: 12%;
}

.place-card:nth-child(3) .place-graphic {
  right: -8%;
  top: 14%;
}

.place-card:nth-child(4) .place-graphic {
  right: -12%;
  top: 18%;
}

.place-card:nth-child(5) .place-graphic {
  right: -11%;
  top: 12%;
}

.place-card:nth-child(6) .place-graphic {
  right: -10%;
  top: 8%;
}

.process-section {
  background: #edf0eb;
}

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.steps li {
  background: var(--surface);
  border: 1px solid rgba(81, 109, 92, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 0.7rem;
  min-height: 170px;
  padding: 1.2rem;
}

.steps strong {
  font-size: 1.02rem;
}

.contact-section {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 130px 1fr;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
}

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

.contact-row strong {
  overflow-wrap: anywhere;
}

.contact-value {
  display: grid;
  gap: 0.2rem;
}

.contact-value small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.contact-row.highlight {
  background: #f7e3dc;
}

.site-footer {
  align-items: end;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 5vw;
}

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

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

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

.legal-hero {
  margin: 0 auto;
  max-width: 920px;
  padding: 6rem 5vw 2rem;
}

.legal-content {
  margin: 0 auto;
  max-width: 920px;
  padding: 1rem 5vw 6rem;
}

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

.legal-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.notice {
  background: #fff3d7;
  border: 1px solid #ead29d;
  border-radius: var(--radius);
  color: #59421f;
  padding: 1rem;
}

.link-page {
  background:
    linear-gradient(160deg, rgba(237, 240, 235, 0.92), rgba(251, 247, 239, 0.98)),
    var(--paper);
  min-height: 100vh;
}

.link-shell {
  display: grid;
  gap: 1.15rem;
  margin: 0 auto;
  max-width: 520px;
  min-height: 100vh;
  padding: 2rem 1rem 1.1rem;
}

.link-profile {
  padding-top: 0.35rem;
}

.link-avatar {
  aspect-ratio: 1;
  border: 4px solid rgba(255, 253, 248, 0.94);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(38, 51, 47, 0.16);
  height: 82px;
  margin-bottom: 1.1rem;
  object-fit: cover;
  object-position: 48% 22%;
  width: 82px;
}

.link-profile h1 {
  font-size: clamp(2.45rem, 13vw, 3.8rem);
  hyphens: none;
  line-height: 0.98;
  margin-bottom: 0.8rem;
  overflow-wrap: normal;
}

.link-profile p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.quick-links {
  display: grid;
  gap: 0.72rem;
}

.quick-link {
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(81, 109, 92, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(38, 51, 47, 0.08);
  display: grid;
  gap: 0.82rem;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 0.78rem 0.85rem;
  text-decoration: none;
}

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

.quick-link.primary {
  background: var(--moss);
  border-color: var(--moss);
  color: white;
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link strong {
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.quick-link small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.quick-link.primary small {
  color: rgba(255, 255, 255, 0.76);
}

.quick-icon {
  align-items: center;
  background: #edf0eb;
  border-radius: 50%;
  color: var(--moss);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  line-height: 1;
  width: 46px;
}

.quick-link.primary .quick-icon {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.quick-icon svg {
  display: block;
  fill: none;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 23px;
}

.link-arrow {
  color: rgba(38, 51, 47, 0.44);
  font-size: 1.7rem;
  line-height: 1;
}

.quick-link.primary .link-arrow {
  color: rgba(255, 255, 255, 0.72);
}

.link-note {
  background: #f8ead8;
  border: 1px solid rgba(185, 109, 89, 0.22);
  border-radius: var(--radius);
  color: #59421f;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
  padding: 0.9rem 1rem;
}

.link-footer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.2rem;
}

.link-footer a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration-color: rgba(81, 109, 92, 0.35);
  text-underline-offset: 4px;
}

@media (min-width: 700px) {
  .link-page {
    align-items: center;
    display: grid;
  }

  .link-shell {
    min-height: auto;
    padding: 3rem 1rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 0.8rem 5vw 1rem;
    position: absolute;
    right: 0;
    top: 76px;
  }

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

  .main-nav.legal-nav {
    background: transparent;
    border-bottom: 0;
    display: flex;
    gap: 1rem;
    padding: 0;
    position: static;
  }

  .main-nav a {
    padding: 0.85rem 0;
  }

  .main-nav.legal-nav a {
    padding: 0;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.84) 58%, rgba(251, 247, 239, 0.24) 100%);
  }

  .hero-content {
    padding: 6rem 5vw 16rem;
  }

  .hero-card {
    bottom: 1rem;
    left: 5vw;
    right: auto;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  .hero-content {
    padding-top: 4.5rem;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .intro-facts div,
  .about-facts div,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 2rem;
  }

  .about-photo {
    max-height: 360px;
    max-width: 100%;
  }

  .about-photo img {
    aspect-ratio: 1.28;
    object-position: 48% center;
  }

  .service-grid,
  .place-board {
    grid-template-columns: 1fr;
  }

  .place-card {
    grid-column: auto;
    min-height: 134px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
