:root {
  --mint-50: #f1f7f3;
  --mint-100: #dcece3;
  --mint-200: #c8e0d3;
  --eucalyptus: #668274;
  --eucalyptus-dark: #3f6254;
  --periwinkle: #0d4a3b;
  --periwinkle-deep: #092f28;
  --ink: #18352d;
  --ink-soft: #5f6e68;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --blush: #d7a99e;
  --line: rgba(24, 53, 45, 0.16);
  --shadow: 0 24px 64px rgba(9, 47, 40, 0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --container: 1240px;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--periwinkle-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section--compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--mint {
  background: var(--mint-50);
}

.section--dark {
  color: white;
  background: var(--periwinkle-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.55fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--eucalyptus-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section--dark .eyebrow,
.page-hero--dark .eyebrow {
  color: var(--mint-200);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.35rem, 7.5vw, 7.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  min-height: 3.7rem;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border: 1px solid var(--periwinkle);
  border-radius: 999px;
  color: white;
  background: var(--periwinkle);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.button::after {
  font-size: 1.15rem;
  font-weight: 400;
  content: "\2197";
  transition: transform 220ms ease;
}

.button:hover {
  color: white;
  background: var(--periwinkle-deep);
  border-color: var(--periwinkle-deep);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button--light {
  color: var(--periwinkle-deep);
  background: var(--mint-100);
  border-color: var(--mint-100);
}

.button--light:hover {
  color: var(--periwinkle-deep);
  background: white;
  border-color: white;
}

.button--ghost {
  color: var(--periwinkle);
  background: transparent;
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--periwinkle);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.35rem);
}

.announcement {
  padding: 0.52rem 1.5rem;
  color: white;
  background: var(--periwinkle-deep);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(24, 53, 45, 0.09);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 5.6rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  color: var(--periwinkle-deep);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--eucalyptus);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  position: absolute;
  top: -0.25rem;
  right: 0.15rem;
  width: 0.7rem;
  height: 1.2rem;
  border-radius: 100% 0;
  background: var(--mint-200);
  content: "";
  transform: rotate(28deg);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
}

.brand-copy small {
  color: var(--eucalyptus-dark);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  align-items: center;
}

.main-nav a:not(.button) {
  position: relative;
  padding: 0.8rem 0;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.48rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .button {
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.73rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  color: var(--periwinkle-deep);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.7rem;
  height: 1px;
  margin: 0.32rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(84vh, 870px);
  overflow: hidden;
  align-items: center;
  background: var(--mint-50);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 245, 238, 0.98) 0%, rgba(248, 245, 238, 0.92) 31%, rgba(248, 245, 238, 0.2) 61%, rgba(248, 245, 238, 0) 100%);
  content: "";
}

.hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  width: min(700px, 58vw);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--eucalyptus-dark);
  font-weight: 400;
}

.hero .lead {
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__note {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: white;
  background: rgba(9, 47, 40, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero__note::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--mint-200);
  box-shadow: 0 0 0 5px rgba(200, 224, 211, 0.18);
  content: "";
}

.values-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--mint-100);
}

.values-strip__track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  align-items: center;
  padding: 1rem 0;
  animation: ticker 26s linear infinite;
}

.values-strip span {
  display: inline-flex;
  gap: 2.4rem;
  align-items: center;
  color: var(--periwinkle-deep);
  font-family: var(--display);
  font-size: 1.03rem;
  font-style: italic;
  white-space: nowrap;
}

.values-strip span::after {
  color: var(--eucalyptus);
  font-family: var(--body);
  font-size: 0.65rem;
  content: "\2736";
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

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

.service-card {
  position: relative;
  min-height: 420px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: color 300ms ease, background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.service-card::before {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid var(--eucalyptus);
  border-radius: 50%;
  content: "";
  opacity: 0.24;
  transition: transform 350ms ease;
}

.service-card::after {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  width: 2.5rem;
  height: 4rem;
  border-radius: 100% 0;
  background: var(--mint-200);
  content: "";
  transform: rotate(18deg);
  transition: transform 350ms ease;
}

.service-card__number {
  display: block;
  margin-bottom: 7rem;
  color: var(--eucalyptus-dark);
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
}

.service-card p {
  max-width: 28rem;
  color: var(--ink-soft);
}

.service-card:hover {
  color: white;
  background: var(--periwinkle);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:hover p,
.service-card:hover .service-card__number {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:hover::before {
  border-color: white;
  transform: scale(1.18);
}

.service-card:hover::after {
  transform: rotate(35deg) scale(1.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  aspect-ratio: 5 / 5.3;
  border-radius: var(--radius-lg) var(--radius-lg) 10rem 0;
  object-fit: cover;
}

.split__media--wide img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
}

.botanical-badge {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  display: grid;
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  background: var(--periwinkle);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  transform: rotate(8deg);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  color: var(--periwinkle);
  background: var(--mint-100);
  font-size: 0.75rem;
  content: "\2713";
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--mint-100);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.gallery-item:first-child img {
  object-position: center 60%;
}

.gallery-item__label {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: white;
  background: rgba(9, 47, 40, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.gallery-item__label::after {
  content: "\2197";
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.quote-block {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote-block::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--mint-200);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.7;
  content: "\201C";
}

.quote-block blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.quote-block cite {
  color: var(--mint-200);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 2rem clamp(1rem, 2.5vw, 2.2rem);
  border-left: 1px solid var(--line);
  counter-increment: process;
}

.process-step:last-child {
  border-right: 1px solid var(--line);
}

.process-step::before {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--eucalyptus-dark);
  font-family: var(--display);
  font-size: 0.9rem;
  content: "0" counter(process);
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.price-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.price-card--featured {
  color: white;
  background: var(--periwinkle);
  transform: translateY(-1rem);
}

.price-card__tag {
  align-self: flex-start;
  margin-bottom: 4rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--eucalyptus-dark);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card--featured .price-card__tag {
  color: var(--mint-100);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-card p {
  color: var(--ink-soft);
}

.price-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card__price {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.price-card--featured .price-card__price {
  border-color: rgba(255, 255, 255, 0.25);
}

.price-note {
  max-width: 680px;
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-align: center;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--periwinkle-deep);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  border: 1px solid rgba(200, 224, 211, 0.25);
  border-radius: 50%;
  content: "";
}

.cta-band::before {
  top: -13rem;
  right: -7rem;
  width: 28rem;
  height: 28rem;
}

.cta-band::after {
  right: 7rem;
  bottom: -12rem;
  width: 18rem;
  height: 18rem;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem);
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--mint-50);
}

.page-hero::after {
  position: absolute;
  right: -10vw;
  bottom: -42vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid var(--eucalyptus);
  border-radius: 50%;
  content: "";
  opacity: 0.2;
}

.page-hero--dark {
  color: white;
  background: var(--periwinkle-deep);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 4rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
}

.page-hero .lead {
  margin-bottom: 0.45rem;
}

.page-hero--dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.32fr 0.72fr 0.42fr;
  gap: 2rem;
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail__number {
  color: var(--eucalyptus-dark);
  font-family: var(--display);
  font-style: italic;
}

.service-detail__meta {
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  list-style: none;
}

.service-detail__meta li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

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

.fact {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.fact strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--periwinkle);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
}

.fact p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-page-grid figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-page-grid figure:nth-child(1),
.gallery-page-grid figure:nth-child(4) {
  grid-column: span 7;
}

.gallery-page-grid figure:nth-child(2),
.gallery-page-grid figure:nth-child(3) {
  grid-column: span 5;
}

.gallery-page-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-page-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-page-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: white;
  background: rgba(9, 47, 40, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-align: left;
  cursor: pointer;
}

.faq-button::after {
  flex: 0 0 auto;
  margin-left: 1rem;
  font-family: var(--body);
  font-size: 1.4rem;
  font-weight: 300;
  content: "+";
  transition: transform 180ms ease;
}

.faq-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 720px;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
}

.faq-button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.75fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  color: white;
  background: var(--periwinkle-deep);
}

.contact-card a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.22em;
}

.contact-card__group {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card__group:first-of-type {
  padding-top: 0;
}

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

.contact-card__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--mint-200);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.form-intro {
  margin-bottom: 2rem;
}

.form-intro h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--cream);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--eucalyptus-dark);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(102, 130, 116, 0.13);
}

.field [aria-invalid="true"] {
  border-color: #9c3939;
}

.field-error {
  min-height: 1em;
  margin: 0;
  color: #8e2f2f;
  font-size: 0.74rem;
}

.form-footer {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 350px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.78rem;
  cursor: pointer;
}

.consent input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--periwinkle);
}

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid var(--eucalyptus);
  border-radius: var(--radius-sm);
  color: var(--periwinkle-deep);
  background: var(--mint-50);
}

.form-status.is-visible {
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--periwinkle-deep);
  background: var(--mint-100);
}

.site-footer {
  color: white;
  background: var(--periwinkle-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.72fr 0.72fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.site-footer .brand {
  margin-bottom: 1.5rem;
  color: white;
}

.site-footer .brand-mark {
  border-color: var(--mint-200);
}

.site-footer .brand-copy small {
  color: var(--mint-200);
}

.footer-about p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--mint-200);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-hours {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.footer-hours p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .main-nav {
    position: fixed;
    z-index: 90;
    top: calc(5.6rem + 1.72rem);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 2.2rem 1.5rem 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    color: white;
    background: var(--periwinkle-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a:not(.button) {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 1rem;
  }

  .section-heading,
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .service-card {
    min-height: 330px;
  }

  .service-card__number {
    margin-bottom: 5rem;
  }

  .price-card--featured {
    transform: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .process-step:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .announcement {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 7.3rem);
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(248, 245, 238, 0.99) 0%, rgba(248, 245, 238, 0.95) 47%, rgba(248, 245, 238, 0.12) 82%);
  }

  .hero__image {
    object-position: 67% center;
  }

  .hero__content {
    width: 100%;
    padding: 16rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__note {
    top: 1.2rem;
    right: 1rem;
    bottom: auto;
  }

  .split,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: initial;
  }

  .botanical-badge {
    right: -0.35rem;
    width: 7rem;
    height: 7rem;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .gallery-item {
    min-height: 360px;
  }

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

  .process-step,
  .process-step:nth-child(2),
  .process-step:last-child {
    border-right: 0;
    border-left: 0;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--line);
  }

  .process-step::before {
    margin-bottom: 1.5rem;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band .button {
    width: 100%;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid figure:nth-child(n) {
    min-height: 420px;
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 0.7rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 1.2rem 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
