:root {
  --bg: #f7f4ee;
  --surface: rgba(249, 246, 240, 0.88);
  --surface-solid: #fdfaf4;
  --surface-deep: #2f4f46;
  --surface-soft: #dfe7d8;
  --text: #2f4f46;
  --muted: #667465;
  --line: rgba(175, 188, 166, 0.72);
  --accent: #2f4f46;
  --accent-dark: #5f7a65;
  --shadow: 0 22px 54px rgba(59, 76, 60, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196, 179, 152, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(168, 184, 161, 0.22), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #f2eee5 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(175, 188, 166, 0.46);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.hero-copy h1,
.section h2,
.feature-copy h2,
.availability-panel h2,
.contact-card h3,
.service-card h3,
.values-grid h2,
.land-acknowledgement-card h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.brand-logo {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(180, 143, 82, 0.45);
  background: #f7f4ee;
  box-shadow: 0 0.85rem 1.8rem rgba(47, 79, 70, 0.14);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.82);
  transform-origin: center 34%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav .button-primary {
  color: white;
}

.site-nav .button-secondary {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow);
}

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

.button-secondary {
  background: rgba(223, 231, 216, 0.72);
  border-color: rgba(175, 188, 166, 0.9);
}

.button-small {
  padding: 0.8rem 1.1rem;
}

.hero-section,
.section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.hero-section > .container,
.values-strip > .container,
.section > .container,
.closing-image-section > .container,
.land-acknowledgement > .container {
  position: relative;
  z-index: 1;
}

.hero-section::after,
.values-strip::before,
.section-light::before,
#services::after,
.section-accent::before,
#availability::before,
.land-acknowledgement::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url("assets/hero-floral.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.17;
  filter: saturate(0.72) contrast(0.92);
  z-index: 0;
}

.hero-section::before,
#services::before,
#availability::after,
#contact::after,
.closing-image-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url("assets/flowers.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: 0.15;
  filter: saturate(0.85) contrast(0.9) brightness(0.98);
  z-index: 0;
}

.hero-section::after {
  left: -11rem;
  bottom: -4rem;
  width: min(33rem, 58vw);
  height: 21rem;
  transform: rotate(18deg);
}

.hero-section::before {
  right: -9rem;
  bottom: 0.4rem;
  width: min(42rem, 72vw);
  height: 15rem;
  opacity: 0.12;
  transform: rotate(-4deg);
}

.hero-grid,
.feature-grid,
.availability-grid,
.contact-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  max-width: 12ch;
}

.lead {
  font-size: 1.18rem;
  color: var(--text);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-actions,
.hero-badges,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin: 2rem 0 1.3rem;
}

.hero-badges span,
.stat-card,
.service-card,
.values-grid article,
.availability-panel,
.contact-card,
.feature-panel,
.support-card,
.photo-card,
.land-acknowledgement-card {
  background: var(--surface);
  border: 1px solid rgba(201, 214, 200, 0.95);
  box-shadow: var(--shadow);
}

.values-grid article,
.service-card,
.availability-panel,
.contact-card,
.support-card,
.stat-card,
.land-acknowledgement-card {
  background:
    linear-gradient(180deg, rgba(249, 246, 240, 0.94), rgba(239, 245, 235, 0.9));
}

.hero-badges span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-visual,
.photo-stack {
  position: relative;
}

.hero-floral {
  position: absolute;
  top: -6.5rem;
  right: -9rem;
  width: min(46rem, 96%);
  opacity: 0.42;
  pointer-events: none;
  filter: saturate(0.76) contrast(0.9) blur(0.15px);
  z-index: 0;
}

.hero-floral img {
  width: 100%;
  height: auto;
}

.photo-stack {
  z-index: 1;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-image {
  object-position: center 24%;
}

.outdoor-image {
  object-position: center 16%;
}

.photo-card figcaption {
  padding: 0.95rem 1.1rem 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(247, 244, 238, 0.92);
}

.photo-card-tall {
  min-height: 280px;
}

.photo-card-tall img {
  min-height: 280px;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.support-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.support-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.support-card ul,
.contact-note ul {
  margin: 0;
  padding-left: 1.2rem;
}

.values-strip {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.values-strip::before {
  right: -12rem;
  bottom: -10rem;
  width: min(36rem, 66vw);
  height: 24rem;
  opacity: 0.15;
  transform: rotate(-14deg);
}

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

.values-grid article,
.service-card,
.availability-panel,
.contact-card,
.feature-panel,
.stat-card,
.land-acknowledgement-card {
  border-radius: var(--radius-lg);
}

.values-grid article {
  padding: 1.7rem;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(223, 231, 216, 0.28), rgba(247, 244, 238, 0.36));
  border-block: 1px solid rgba(201, 214, 200, 0.7);
}

.section-light::before {
  top: -9rem;
  right: -14rem;
  width: min(39rem, 72vw);
  height: 28rem;
  opacity: 0.15;
  transform: rotate(-8deg);
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(223, 231, 216, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(47, 79, 70, 0.98), rgba(72, 96, 78, 0.97));
  color: #f7f4ee;
}

.section-accent::before {
  right: -10rem;
  bottom: -8rem;
  width: min(36rem, 70vw);
  height: 25rem;
  opacity: 0.16;
  filter: saturate(0.6) brightness(1.16);
  transform: rotate(9deg);
}

#services::after {
  left: -13rem;
  bottom: -11rem;
  width: min(40rem, 72vw);
  height: 28rem;
  opacity: 0.13;
  transform: rotate(16deg);
}

#services::before {
  top: 1.4rem;
  right: -11rem;
  width: min(40rem, 66vw);
  height: 14rem;
  opacity: 0.13;
  transform: rotate(5deg);
}

#availability::before {
  top: -8rem;
  left: -12rem;
  width: min(34rem, 64vw);
  height: 24rem;
  opacity: 0.13;
  transform: rotate(12deg);
}

#availability::after {
  right: -9rem;
  bottom: 2rem;
  width: min(36rem, 62vw);
  height: 13rem;
  opacity: 0.11;
  transform: rotate(-6deg);
}

#contact::after {
  left: -10rem;
  bottom: 1rem;
  width: min(38rem, 68vw);
  height: 14rem;
  opacity: 0.11;
  transform: rotate(5deg);
}

.section-accent .eyebrow {
  color: #dce6dc;
}

.section-accent .feature-copy p {
  color: rgba(247, 244, 238, 0.82);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.2rem;
}

.section h2,
.feature-copy h2,
.availability-panel h2,
.contact-card h3,
.land-acknowledgement-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.flow-content p,
.section-heading p,
.feature-copy p,
.availability-panel p,
.contact-card p,
.land-acknowledgement-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  padding: 1.35rem 1.45rem 1.5rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.service-icon {
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
}

.service-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-gold {
  color: #9b7a2f;
  background: #f2e2ae;
  border-color: rgba(184, 154, 88, 0.35);
}

.service-icon-peach {
  color: #9d6b41;
  background: #f2d6c4;
  border-color: rgba(176, 120, 84, 0.3);
}

.service-icon-teal {
  color: #3e7f74;
  background: #cbe7dd;
  border-color: rgba(77, 140, 126, 0.3);
}

.service-icon-lilac {
  color: #7f648c;
  background: #e5d7ea;
  border-color: rgba(128, 96, 149, 0.28);
}

.service-icon-pink {
  color: #9d6b8f;
  background: #efd9e7;
  border-color: rgba(164, 101, 144, 0.28);
}

.service-icon-sage {
  color: #6f8461;
  background: #dce5c6;
  border-color: rgba(109, 132, 97, 0.28);
}

.service-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
}

.feature-panel {
  padding: 2rem;
  background: rgba(223, 231, 216, 0.1);
  border-color: rgba(220, 230, 220, 0.16);
}

.feature-panel blockquote {
  margin: 0 0 1.8rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 230, 220, 0.2);
}

.feature-list p {
  margin-bottom: 0;
  color: rgba(247, 244, 238, 0.82);
}

.availability-panel {
  padding: 2rem;
}

.highlighted {
  background:
    linear-gradient(180deg, rgba(223, 231, 216, 0.98), rgba(247, 244, 238, 0.94));
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.hours-list li,
.contact-details p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(247, 249, 243, 0.88);
  border: 1px solid rgba(201, 214, 200, 0.9);
}

.contact-note {
  margin: 1.5rem 0;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(247, 249, 243, 0.88);
  border: 1px solid rgba(201, 214, 200, 0.9);
}

.photo-card,
.feature-panel,
.availability-panel.highlighted,
.land-acknowledgement-card {
  position: relative;
}

.photo-card::after,
.feature-panel::after,
.availability-panel.highlighted::after,
.land-acknowledgement-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(95, 122, 101, 0.06));
  pointer-events: none;
}

.contact-card {
  padding: 2rem;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-footnote {
  font-size: 0.94rem;
}

.closing-image-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 4.5rem;
}

.closing-image-section::before {
  top: -3.4rem;
  left: 50%;
  width: min(44rem, 80vw);
  height: 15rem;
  opacity: 0.13;
  transform: translateX(-50%);
}

.closing-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.4rem);
  border: 1px solid rgba(201, 214, 200, 0.95);
  box-shadow: var(--shadow);
}

.closing-image-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  object-fit: cover;
  object-position: center center;
}

.land-acknowledgement {
  position: relative;
  overflow: hidden;
  padding: 0 0 2.5rem;
}

.land-acknowledgement::before {
  right: -12rem;
  bottom: -12rem;
  width: min(35rem, 78vw);
  height: 25rem;
  opacity: 0.15;
  transform: rotate(-20deg);
}

.land-acknowledgement-card {
  max-width: 58rem;
  margin: 0 auto;
  padding: 2.2rem;
  overflow: hidden;
}

.land-acknowledgement-card p {
  margin: 0;
}

.land-acknowledgement-card p + p {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(201, 214, 200, 0.8);
  background: rgba(247, 244, 238, 0.82);
}

.footer-inner {
  justify-content: center;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  width: 100%;
}

.footer-logo-lockup img {
  width: min(8.5rem, 32vw);
  height: auto;
  flex: 0 0 auto;
  border-radius: 1.4rem;
  border: 1px solid rgba(180, 143, 82, 0.32);
  background: #f7f4ee;
  box-shadow: 0 1.1rem 2.4rem rgba(47, 79, 70, 0.13);
}

.footer-copy {
  display: grid;
  gap: 0.35rem;
}

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

.footer-copy p:first-child {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .availability-grid,
  .contact-grid,
  .two-column,
  .service-grid,
  .values-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .feature-grid,
  .availability-grid,
  .contact-grid,
  .two-column {
    align-items: start;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-floral {
    top: -3rem;
    right: -2rem;
    width: min(40rem, 110%);
    opacity: 0.36;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto 1rem;
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid rgba(201, 214, 200, 0.9);
    border-radius: 1.4rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .header-inner,
  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-logo-lockup {
    flex-direction: column;
    text-align: center;
  }

  .hero-section,
  .section {
    padding: 4.5rem 0;
  }

  .hero-floral {
    top: -1.5rem;
    right: -3rem;
    width: min(34rem, 125%);
    opacity: 0.3;
  }

  .hero-section::after,
  .hero-section::before,
  .values-strip::before,
  .section-light::before,
  #services::before,
  #services::after,
  .section-accent::before,
  #availability::before,
  #availability::after,
  #contact::after,
  .closing-image-section::before,
  .land-acknowledgement::before {
    width: min(25rem, 95vw);
    height: 18rem;
    opacity: 0.11;
  }

  .hero-section::before {
    right: -10rem;
    bottom: 0;
  }

  #services::before {
    top: 1rem;
    right: -11rem;
  }

  #availability::after {
    right: -11rem;
    bottom: 2rem;
  }

  #contact::after {
    left: -11rem;
    bottom: 0;
  }

  .closing-image-section::before {
    top: -2.6rem;
  }

  .photo-card-tall {
    min-height: 240px;
  }

  .photo-card-tall img {
    min-height: 240px;
  }

  .portrait-image {
    object-position: center 20%;
  }

  .outdoor-image {
    min-height: 320px;
    object-position: center 14%;
  }

  .closing-image-section {
    padding: 0 0 3.5rem;
  }

  .closing-image-card img {
    height: 260px;
  }

  .land-acknowledgement {
    padding: 0 0 2rem;
  }

  .land-acknowledgement-card {
    padding: 1.7rem;
  }
}
