:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #65706d;
  --paper: #f3f5f2;
  --soft: #dfe7e1;
  --line: #cbd6d1;
  --charcoal: #111817;
  --gold: #9a7a45;
  --gold-dark: #6e5938;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 24, 23, 0.16);
  --header-height: 112px;
  --divider-height: 44px;
  --section-gap: clamp(56px, 7vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

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

.site-header:has(.mobile-nav[open]) {
  z-index: 300;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 20px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(17, 24, 23, 0.86), rgba(17, 24, 23, 0.58) 44%, rgba(17, 24, 23, 0.86)),
    url("assets/header-flowers.png") center 44% / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.brand,
.nav,
.header-call,
.mobile-nav {
  position: relative;
  z-index: 1;
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  position: relative;
  z-index: 201;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  background: rgba(17, 24, 23, 0.42);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-nav[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 240px;
  padding: 72px 0 24px;
  background: var(--charcoal);
  border-radius: 0 0 0 12px;
  box-shadow: -8px 12px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-panel a {
  display: block;
  padding: 12px 24px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

.mobile-nav-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -52px 0 0 0;
  padding: 12px 24px 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-header::after {
  content: "";
  width: 46px;
  height: 42px;
}

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

.brand-mark {
  width: 18px;
  height: 46px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

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

.brand strong {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.nav a:hover,
.header-call:hover {
  color: #ffffff;
}

.map-link:hover {
  color: var(--charcoal);
}

.header-call {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 23, 0.32);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--section-gap);
  align-items: center;
  min-height: calc(100dvh - var(--header-height) - var(--divider-height));
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 58px);
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  color: #3e3a35;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

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

.button.secondary {
  border: 1px solid var(--line);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.56);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 590px;
  margin: 0;
  padding: 0;
}

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

.hero-facts dt {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.hero-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: #fafbf8;
  box-shadow: var(--shadow);
  align-self: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(24, 32, 31, 0.16);
  pointer-events: none;
}

.experience-note {
  position: relative;
  min-height: 320px;
  padding: clamp(96px, 9vw, 126px) clamp(30px, 4vw, 58px);
  color: var(--ink);
  background: #fafbf8;
  overflow: hidden;
}

.experience-note::before,
.experience-note::after {
  content: "";
  position: absolute;
}

.experience-note::before {
  top: 16px;
  left: 18px;
  width: min(86%, 620px);
  height: 170px;
  background: url("assets/floral-mourning-frame.png") left top / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.experience-note::after {
  right: 18px;
  bottom: 16px;
  width: min(86%, 620px);
  height: 170px;
  background: url("assets/floral-mourning-frame.png") left top / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.72;
  transform: rotate(180deg);
}

.experience-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(26px, 3.2vw, 38px);
  background: rgba(250, 251, 248, 0.84);
}

.experience-copy p {
  margin: 0;
  padding: 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.experience-copy p + p {
  margin-top: 12px;
}

.services,
.about,
.contact-band,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: var(--section-gap);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
  min-height: calc(100dvh - var(--header-height) - var(--divider-height));
  align-content: center;
  scroll-margin-top: 0;
}

.section-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--divider-height);
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: #d8d2c9;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.services .section-heading,
.faq .section-heading {
  max-width: 560px;
  margin-bottom: 0;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.service-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--line);
}

.service-thumb {
  width: 118px;
  height: 118px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #e6eee8;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
}

.service-card p,
.about-copy p,
.contact-band p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.about {
  align-content: start;
  padding-top: clamp(34px, 4.8vw, 62px);
  padding-bottom: clamp(34px, 4.8vw, 62px);
  background: #eef3ef;
}

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

.about-highlights {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
}

.about-highlights section {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.about-highlights h3 {
  margin-bottom: 5px;
  font-size: clamp(19px, 1.75vw, 24px);
}

.about-highlights p {
  margin-bottom: 0;
}

.quote-panel {
  padding: 0;
  border-left: 0;
  background: transparent;
  align-self: stretch;
  justify-self: stretch;
  min-height: 100%;
}

.quote-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(0.98);
}

.contact-band {
  background: #f0f4f1;
  color: var(--ink);
}

.faq {
  background: #f5f7f4;
  grid-template-columns: 1fr;
  gap: 38px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 70px);
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.faq-list > div {
  display: grid;
  gap: 13px;
  align-content: start;
}

.faq-list article {
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line);
}

.faq-list h3 {
  margin-bottom: 4px;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.contact-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-copy {
  display: grid;
  gap: 14px;
  max-width: 420px;
  justify-self: center;
}

.office-photo {
  margin: 0;
  justify-self: center;
  width: min(100%, 420px);
}

.office-photo img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
}

.phone-link,
.map-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.phone-link {
  background: var(--charcoal);
  color: var(--white);
}

.map-link {
  border: 1px solid var(--line);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.62);
}

.footer {
  padding: 22px clamp(20px, 5vw, 72px);
  background: #0b1110;
  color: #b8c3be;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (min-width: 981px) and (max-height: 860px) {
  :root {
    --header-height: 96px;
    --divider-height: 38px;
    --section-gap: clamp(42px, 5vw, 78px);
  }

  .site-header {
    min-height: var(--header-height);
    padding: 14px clamp(20px, 5vw, 72px);
  }

  .brand-mark {
    height: 40px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(42px, 6.4vw, 72px);
  }

  h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3.3vw, 42px);
  }

  h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .lead {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.38;
  }

  .hero,
  .services,
  .about,
  .contact-band,
  .faq {
    padding-top: clamp(30px, 4.2vw, 48px);
    padding-bottom: clamp(30px, 4.2vw, 48px);
  }

  .hero-actions {
    margin: 24px 0;
  }

  .hero-facts dt {
    font-size: 28px;
  }

  .experience-note {
    min-height: 270px;
    padding: 78px clamp(24px, 3vw, 40px);
  }

  .experience-note::before,
  .experience-note::after {
    height: 128px;
  }

  .experience-copy {
    padding: 24px;
  }

  .experience-copy p {
    font-size: 17px;
    line-height: 1.42;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading p:last-child {
    font-size: 16px;
  }

  .service-grid {
    gap: 18px;
  }

  .service-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .service-thumb {
    width: 96px;
    height: 96px;
  }

  .service-card p,
  .about-copy p,
  .contact-band p {
    font-size: 15px;
    line-height: 1.45;
  }

  .about {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-highlights {
    gap: 12px;
    margin-top: 16px;
  }

  .about-highlights h3 {
    font-size: 20px;
  }

  .office-photo {
    width: min(100%, 340px);
  }

  .office-photo img {
    max-height: 520px;
  }

  .contact-copy {
    gap: 12px;
  }

  .phone-link,
  .map-link {
    min-height: 50px;
    padding: 12px 16px;
  }

  .faq-list {
    gap: 22px 46px;
  }

  .faq-list > div {
    gap: 10px;
  }

  .faq-list article {
    padding-bottom: 10px;
  }

  .faq-list h3 {
    font-size: 18px;
  }

  .faq-list p {
    font-size: 14px;
    line-height: 1.38;
  }

  .section-divider {
    font-size: 13px;
  }
}

@media (min-width: 981px) and (max-height: 740px) {
  :root {
    --header-height: 84px;
    --divider-height: 34px;
    --section-gap: clamp(34px, 4vw, 60px);
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-mark {
    height: 34px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small,
  .nav,
  .hero-facts dd,
  .section-divider {
    font-size: 12px;
  }

  .nav {
    gap: 18px;
  }

  .header-call {
    padding: 8px 13px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(38px, 5.2vw, 58px);
  }

  h2 {
    font-size: clamp(25px, 2.8vw, 36px);
  }

  h3 {
    font-size: 18px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero,
  .services,
  .about,
  .contact-band,
  .faq {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.34;
  }

  .button {
    min-height: 46px;
    padding: 11px 18px;
  }

  .hero-actions {
    margin: 18px 0;
  }

  .hero-facts div {
    padding-top: 10px;
  }

  .hero-facts dt {
    font-size: 24px;
  }

  .experience-note {
    min-height: 230px;
    padding: 64px 26px;
  }

  .experience-note::before,
  .experience-note::after {
    height: 104px;
  }

  .experience-copy {
    padding: 20px;
  }

  .experience-copy p {
    font-size: 15px;
    line-height: 1.36;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .service-thumb {
    width: 82px;
    height: 82px;
  }

  .about-highlights {
    gap: 9px;
    margin-top: 12px;
  }

  .about-highlights section {
    padding-left: 14px;
  }

  .about-highlights h3 {
    font-size: 18px;
  }

  .office-photo {
    width: min(100%, 300px);
  }

  .office-photo img {
    max-height: 430px;
  }

  .faq-list {
    gap: 20px 42px;
  }

  .faq-list h3 {
    font-size: 16px;
  }

  .faq-list p {
    font-size: 13px;
    line-height: 1.32;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .mobile-nav {
    display: grid;
    justify-self: end;
  }

  .mobile-nav[open] summary {
    position: relative;
    z-index: 201;
  }

  .hero,
  .services,
  .about,
  .faq,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .office-photo {
    max-width: 320px;
  }

  .hero-media {
    max-width: none;
  }

  .hero-content {
    max-width: none;
  }

  .lead {
    max-width: none;
  }

  .hero-facts {
    max-width: none;
  }

  .section-heading {
    max-width: none;
  }

  .services .section-heading,
  .faq .section-heading {
    max-width: none;
    margin-bottom: 38px;
  }

  .experience-copy {
    max-width: none;
  }
}

.fab-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.fab-text {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 56px;
    padding: 10px clamp(20px, 5vw, 72px);
  }

  .brand-mark {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero,
  .services,
  .about,
  .contact-band,
  .faq {
    min-height: 0;
    align-content: initial;
    scroll-margin-top: 0;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 19px;
  }

  .section-divider {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .service-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts dt {
    font-size: 22px;
  }

  .hero-facts dd {
    font-size: 12px;
  }

  .fact-prefix {
    display: none;
  }

  .service-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .service-thumb {
    width: 96px;
    height: 96px;
  }

  .button,
  .phone-link,
  .map-link {
    width: 100%;
  }

  .service-card {
    min-height: 0;
  }

  .fab-call {
    display: flex;
  }
}
