:root {
  --ink: #24211f;
  --muted: #6e625c;
  --paper: #fffaf3;
  --cream: #f4ecdf;
  --rose: #b45f64;
  --moss: #6f7e5d;
  --plum: #4b3446;
  --line: #dfd0c1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(75, 52, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--plum);
  text-decoration-color: rgba(180, 95, 100, 0.38);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rose);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--plum));
  font-size: 0.9rem;
  box-shadow: 0 10px 26px rgba(180, 95, 100, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-nav a {
  color: var(--ink);
  font-weight: 750;
  font-size: 0.94rem;
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--cream);
  color: var(--plum);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98), rgba(255, 250, 243, 0.82)),
    url("/wp-content/uploads/2017/10/cropped-pexels-photo-261763-1.jpeg") center / cover;
}

.hero-inner {
  max-width: 1120px;
  min-height: min(720px, calc(100vh - 92px));
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 7rem) 1.2rem 4rem;
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 5vw, 4.5rem);
}

.hero-copy {
  flex: 1 1 560px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--rose);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 7.1rem);
}

.hero-copy .subtitle {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--plum);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
}

.hero-note {
  flex: 0 1 360px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-note img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.68rem 1rem;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(75, 52, 70, 0.18);
}

.button.secondary {
  background: var(--white);
  color: var(--plum);
  box-shadow: none;
}

.section {
  padding: clamp(3rem, 7vw, 5.8rem) 1.2rem;
}

.section.tint {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 790px;
}

.lead {
  color: var(--plum);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.split > * {
  flex: 1 1 380px;
  min-width: 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 1.25rem;
  box-shadow: 0 12px 34px rgba(75, 52, 70, 0.07);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.22rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(244, 236, 223, 0.98), rgba(255, 250, 243, 0.92)),
    url("/wp-content/uploads/2017/10/cropped-pexels-photo-261763-1.jpeg") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  padding: clamp(3.4rem, 7vw, 5.2rem) 1.2rem;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--plum);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}

.review {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.34rem solid var(--rose);
  border-radius: 0.35rem;
}

.review h3 {
  color: var(--plum);
  font-size: 1rem;
  font-family: "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.review p {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-panel {
  background: var(--plum);
  color: var(--white);
  border-radius: 0.35rem;
  padding: 1.35rem;
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-panel p {
  margin: 0.7rem 0 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.2rem 1.2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner a {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .hero-copy,
  .hero-note {
    flex-basis: auto;
    width: 100%;
  }

  .hero-note {
    transform: none;
  }
}

@media (max-width: 520px) {
  .nav-wrap,
  .section,
  .page-hero .wrap,
  .hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav a {
    padding: 0.38rem 0.42rem;
    font-size: 0.88rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 14vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .button {
    width: 100%;
  }
}
