/* ==========================================================================
   Nici's Exotenservice — bespoke lavender conservatory design system
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Parisienne";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/parisienne-latin.woff2") format("woff2");
}

:root {
  --ivory: #fbf7f2;
  --cream: #f6efe8;
  --cream-deep: #ede3db;
  --lavender-mist: #f6edf7;
  --lavender-soft: #f1e5f5;
  --lavender: #a879c2;
  --lavender-dark: #76528f;
  --plum: #2e2147;
  --plum-soft: #49365f;
  --gold: #c7a25c;
  --gold-pale: #e6d4a8;
  --sage: #9ba58e;
  --sage-dark: #6f7b66;
  --body: #3d3742;
  --muted: #6f6873;
  --white: #fff;
  --error: #9a3541;
  --border: rgba(118, 82, 143, 0.18);
  --shadow-sm: 0 10px 30px rgba(55, 38, 68, 0.08);
  --shadow-md: 0 22px 55px rgba(55, 38, 68, 0.12);
  --shadow-lg: 0 34px 90px rgba(55, 38, 68, 0.15);
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Parisienne", "Segoe Script", cursive;
  --container: 1280px;
  --header-height: 96px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--body);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--lavender-dark);
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

h1,
h2,
h3 {
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.section {
  position: relative;
  padding-block: clamp(6.5rem, 11vw, 10rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 0.8rem 1.1rem;
  color: var(--white);
  background: var(--plum);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--lavender-dark);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered .eyebrow::after {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto clamp(3.5rem, 6vw, 5rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.86rem 1.45rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-3px);
}

.button-solid {
  color: var(--white);
  background: var(--lavender-dark);
  box-shadow: 0 12px 28px rgba(118, 82, 143, 0.24);
}

.button-solid:hover {
  background: var(--plum-soft);
  box-shadow: 0 17px 34px rgba(75, 53, 94, 0.28);
}

.button-small {
  min-height: 46px;
  padding: 0.72rem 1.1rem;
  font-size: 0.76rem;
}

.button-text {
  min-height: 48px;
  padding-inline: 0.4rem;
  color: var(--plum);
  border-radius: 8px;
}

.button-text::after {
  position: absolute;
  right: 0.4rem;
  bottom: 7px;
  left: 0.4rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.button-text:hover::after {
  transform: scaleX(1);
}

.button-outline {
  color: var(--plum);
  border-color: rgba(118, 82, 143, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.button-outline:hover {
  border-color: var(--lavender);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-cream {
  color: var(--plum);
  background: var(--ivory);
  box-shadow: 0 12px 32px rgba(46, 33, 71, 0.18);
}

.button-cream:hover {
  background: var(--white);
  box-shadow: 0 18px 38px rgba(46, 33, 71, 0.24);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 300ms var(--ease),
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 82px;
  border-color: rgba(118, 82, 143, 0.12);
  background: rgba(251, 247, 242, 0.9);
  box-shadow: 0 10px 35px rgba(55, 38, 68, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1440px);
  height: 100%;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-inline: auto;
}

.brand {
  position: relative;
  z-index: 1002;
  display: grid;
  width: 76px;
  height: 86px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 7px 14px rgba(73, 54, 95, 0.08));
  transition: width 300ms var(--ease);
}

.is-scrolled .brand img,
.is-menu-open .brand img {
  width: 60px;
}

.site-nav {
  flex: 1;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.25vw, 1.2rem);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--plum);
  font-size: clamp(0.69rem, 0.75vw, 0.78rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lavender);
  transform: scaleX(0);
  transition: transform 220ms var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.25rem);
}

.language-switcher {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
}

.language-switcher button {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--plum);
}

.language-switcher > span {
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1.5px;
  background: var(--plum);
  transition:
    top 260ms var(--ease),
    transform 260ms var(--ease),
    opacity 180ms ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: clamp(9rem, 13vw, 12rem) 0 clamp(8rem, 12vw, 11rem);
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 62%;
  height: 100%;
  content: "";
  background: rgba(241, 229, 245, 0.72);
  border-radius: 0 0 0 56%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(3rem, 6vw, 7rem);
}

.hero-copy {
  max-width: 660px;
}

.hero h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(4rem, 6.3vw, 6.6rem);
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--lavender-dark);
  font-weight: 500;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 2rem;
  color: #504956;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--plum-soft);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-line > span:first-child {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-visual {
  --depth-x: 0px;
  --depth-y: 0px;
  position: relative;
  justify-self: stretch;
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 600ms var(--ease);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  padding: 9px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(199, 162, 92, 0.55);
  border-radius: 48% 48% 40px 40px / 18% 18% 40px 40px;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: calc(48% - 6px) calc(48% - 6px) 32px 32px / calc(18% - 3px) calc(18% - 3px) 32px 32px;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 162, 92, 0.35);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-badge-area {
  bottom: 7%;
  left: -4%;
}

.hero-badge-time {
  top: 13%;
  right: -3%;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(168, 121, 194, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 17%;
  left: -8%;
  width: 280px;
  height: 280px;
}

.hero-orb-two {
  right: 4%;
  bottom: 11%;
  width: 160px;
  height: 160px;
}

.lavender-stem {
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 2;
  width: 82px;
  height: 210px;
  transform: rotate(17deg);
  transform-origin: bottom center;
}

.lavender-stem::before {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 2px;
  height: 190px;
  content: "";
  background: var(--sage);
  border-radius: 2px;
  transform: rotate(-8deg);
}

.lavender-stem i {
  position: absolute;
  left: 30px;
  width: 20px;
  height: 32px;
  background: var(--lavender);
  border-radius: 70% 30% 65% 35%;
  opacity: 0.78;
  transform: rotate(28deg);
}

.lavender-stem i:nth-child(1) { top: 4px; left: 35px; transform: scale(0.65) rotate(15deg); }
.lavender-stem i:nth-child(2) { top: 30px; left: 25px; transform: scale(0.8) rotate(-25deg); }
.lavender-stem i:nth-child(3) { top: 55px; left: 41px; }
.lavender-stem i:nth-child(4) { top: 84px; left: 19px; transform: rotate(-28deg); }
.lavender-stem i:nth-child(5) { top: 112px; left: 41px; transform: scale(0.8) rotate(28deg); }
.lavender-stem i:nth-child(6) { top: 140px; left: 21px; transform: scale(0.65) rotate(-28deg); }

.curve-bottom {
  position: absolute;
  right: -8%;
  bottom: -92px;
  left: -8%;
  height: 160px;
  background: var(--ivory);
  border-radius: 50% 50% 0 0;
}

/* Benefits */
.benefit-strip {
  position: relative;
  z-index: 4;
  padding: 2.5rem 0 4rem;
  background: var(--ivory);
}

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

.benefit-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.75rem;
  text-align: center;
}

.benefit-item:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: -0.6rem;
  width: 1px;
  height: 54px;
  content: "";
  background: linear-gradient(transparent, var(--gold-pale), transparent);
}

.icon-disc {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--lavender-dark);
  background: var(--white);
  border: 1px solid rgba(168, 121, 194, 0.2);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.icon-disc svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-disc svg use[href="#icon-paw"] {
  fill: currentColor;
  stroke: none;
}

.benefit-item p {
  margin: 0;
  color: var(--plum-soft);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.55;
}

/* About */
.about-section {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.about-visual {
  position: relative;
  max-width: 520px;
}

.image-arch {
  position: relative;
  overflow: hidden;
  border-radius: 48% 48% 34px 34px / 20% 20% 34px 34px;
  box-shadow: var(--shadow-lg);
}

.image-arch::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: inherit;
  pointer-events: none;
}

.image-arch img {
  width: 100%;
  aspect-ratio: 2 / 2.55;
  object-fit: cover;
  object-position: center 64%;
}

.about-visual::before {
  position: absolute;
  top: 7%;
  right: -8%;
  width: 78%;
  height: 94%;
  content: "";
  border: 1px solid var(--gold-pale);
  border-radius: 48% 48% 34px 34px / 20% 20% 34px 34px;
  transform: rotate(4deg);
}

.about-seal {
  position: absolute;
  right: -44px;
  bottom: 10%;
  z-index: 2;
  display: grid;
  width: 114px;
  height: 114px;
  place-items: center;
  color: var(--plum);
  background: var(--lavender-soft);
  border: 6px solid var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transform: rotate(-7deg);
}

.about-seal svg {
  width: 25px;
  height: 25px;
  margin-bottom: -20px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.5;
}

.about-seal span {
  font-family: var(--font-script);
  font-size: 1.25rem;
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

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

.value-list li {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem;
  color: var(--plum-soft);
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

.value-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-copy blockquote {
  position: relative;
  padding: 1.7rem 2rem 1.6rem 4rem;
  margin: 0;
  overflow: hidden;
  color: var(--plum);
  background: var(--lavender-soft);
  border-left: 2px solid var(--gold);
  border-radius: 6px var(--radius-md) var(--radius-md) 6px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.about-copy blockquote::after {
  position: absolute;
  right: -18px;
  bottom: -36px;
  color: rgba(168, 121, 194, 0.13);
  content: "“";
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
}

.about-copy blockquote svg {
  position: absolute;
  top: 2rem;
  left: 1.35rem;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.5;
}

.about-copy blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  background: var(--lavender-mist);
}

.curve-top {
  position: absolute;
  top: -68px;
  right: -8%;
  left: -8%;
  height: 120px;
  background: var(--lavender-mist);
  border-radius: 50% 50% 0 0;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: clamp(1.7rem, 3vw, 2.3rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(118, 82, 143, 0.13);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(65, 43, 77, 0.06);
  transition:
    transform 380ms var(--ease),
    box-shadow 380ms var(--ease),
    border-color 300ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 2.3rem;
  width: 46px;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 350ms var(--ease);
}

.service-card:hover {
  border-color: rgba(168, 121, 194, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::before {
  width: 86px;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.7rem;
  place-items: center;
  color: var(--lavender-dark);
  background: var(--lavender-soft);
  border-radius: 18px;
  transform: rotate(-3deg);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(3deg);
}

.service-icon svg use[href="#icon-paw"] {
  fill: currentColor;
  stroke: none;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.card-flourish {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(168, 121, 194, 0.14);
  border-radius: 50%;
}

.card-flourish::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(199, 162, 92, 0.18);
  border-radius: 50%;
}

.medical-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 2.3rem 0 0;
  color: var(--muted);
  font-size: 0.77rem;
  font-style: italic;
  text-align: center;
}

.medical-note::before {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--gold);
}

/* Personal quote band */
.quote-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  color: var(--white);
  background: var(--plum);
}

.quote-band::before,
.quote-band::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(230, 212, 168, 0.2);
  border-radius: 50%;
}

.quote-band::before {
  top: -190px;
  left: -80px;
  width: 400px;
  height: 400px;
}

.quote-band::after {
  right: -110px;
  bottom: -260px;
  width: 480px;
  height: 480px;
}

.quote-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 7rem);
}

.quote-band .eyebrow {
  color: var(--gold-pale);
}

.quote-band h2 {
  max-width: 820px;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: clamp(2.65rem, 4.5vw, 4.35rem);
}

.quote-band p:last-child {
  max-width: 770px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.quote-band .button {
  min-width: 260px;
}

/* Guidance */
.guidance-section {
  background: var(--cream);
}

.guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.guidance-intro {
  position: relative;
}

.guidance-intro::after {
  position: absolute;
  top: 0;
  right: -12%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, var(--gold), transparent);
}

.guidance-copy > p:first-child {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.guidance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.guidance-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.7rem 1rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(118, 82, 143, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.inline-note {
  justify-content: flex-start;
  margin-top: 1.7rem;
  text-align: left;
}

/* Process timeline */
.process-section {
  overflow: hidden;
  background: var(--ivory);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--gold-pale);
}

.timeline-step {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.8rem;
  place-items: center;
  color: var(--lavender-dark);
  background: var(--ivory);
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.step-number::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(168, 121, 194, 0.2);
  border-radius: 50%;
}

.timeline-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Care story */
.care-story-section {
  padding-top: 2rem;
  background: var(--ivory);
}

.story-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  padding: clamp(1.5rem, 3.5vw, 3.2rem);
  overflow: hidden;
  background: var(--lavender-soft);
  border: 1px solid rgba(168, 121, 194, 0.18);
  border-radius: clamp(26px, 4vw, 48px);
}

.story-card::before {
  position: absolute;
  top: -150px;
  left: -170px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(199, 162, 92, 0.26);
  border-radius: 50%;
}

.story-copy {
  position: relative;
  z-index: 1;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}

.story-label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1.35rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(118, 82, 143, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy h2 {
  font-size: clamp(2.65rem, 4.5vw, 4.5rem);
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.story-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.1rem;
  color: var(--plum);
  border-top: 1px solid rgba(118, 82, 143, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-detail svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--lavender-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 44% 44% 26px 26px / 18% 18% 26px 26px;
  box-shadow: var(--shadow-md);
}

.story-image::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}

.story-image img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: 56% center;
}

/* Contact */
.contact-section {
  overflow: hidden;
  background: var(--cream);
}

.contact-orb {
  position: absolute;
  top: 9%;
  right: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(168, 121, 194, 0.16);
  border-radius: 50%;
}

.contact-orb::after {
  position: absolute;
  inset: 40px;
  content: "";
  border: 1px solid rgba(199, 162, 92, 0.14);
  border-radius: 50%;
}

.contact-heading {
  max-width: 830px;
  margin: 0 0 4rem;
}

.contact-heading p:last-child {
  margin: 0;
}

.contact-layout {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.inquiry-form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(118, 82, 143, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    box-shadow 300ms ease,
    outline-color 300ms ease;
}

.inquiry-form.is-highlighted {
  animation: form-highlight 900ms var(--ease);
}

@keyframes form-highlight {
  0% { box-shadow: var(--shadow-md); }
  36% { box-shadow: 0 0 0 7px rgba(168, 121, 194, 0.18), var(--shadow-lg); }
  100% { box-shadow: var(--shadow-md); }
}

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

.field {
  min-width: 0;
  margin-bottom: 1.15rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
}

.field label > span[aria-hidden="true"],
.field legend > span[aria-hidden="true"] {
  margin-left: 0.25rem;
  color: var(--error);
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.82rem 1rem;
  color: var(--body);
  background: var(--ivory);
  border: 1px solid rgba(118, 82, 143, 0.2);
  border-radius: 12px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field textarea {
  min-height: 155px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(118, 82, 143, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lavender-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(168, 121, 194, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(154, 53, 65, 0.1);
}

.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.35rem;
  color: var(--error);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.field-help {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.69rem;
}

.radio-field {
  padding: 0;
  border: 0;
}

.radio-options {
  display: flex;
  gap: 0.75rem;
}

.radio-options label {
  display: flex;
  min-width: 100px;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  margin: 0;
  background: var(--ivory);
  border: 1px solid rgba(118, 82, 143, 0.2);
  border-radius: 12px;
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--lavender-dark);
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-field input {
  margin-top: 0.1rem;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding-top: 0.5rem;
}

.form-submit .button {
  flex: 0 0 auto;
}

.form-submit p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
}

.error-summary {
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--error);
  background: #fff3f3;
  border: 1px solid rgba(154, 53, 65, 0.25);
  border-radius: 12px;
}

.error-summary h3 {
  margin-bottom: 0.4rem;
  color: var(--error);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.error-summary ul {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.78rem;
}

.error-summary a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--error);
  font-weight: 700;
}

.contact-card {
  position: sticky;
  top: 112px;
  padding: 2.3rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: var(--plum);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card .eyebrow {
  color: var(--gold-pale);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card > p:not(.eyebrow) {
  font-size: 0.9rem;
}

.contact-card-mark {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  place-items: center;
  color: var(--white);
  background: rgba(168, 121, 194, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-card-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-list {
  padding: 1.3rem 0;
  margin: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
}

.contact-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-pale);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
}

.contact-card .button {
  width: 100%;
}

.contact-botanical {
  position: absolute;
  right: -15px;
  bottom: -70px;
  width: 120px;
  height: 200px;
  opacity: 0.17;
  transform: rotate(24deg);
}

.contact-botanical::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 190px;
  content: "";
  background: var(--white);
}

.contact-botanical i {
  position: absolute;
  left: 50%;
  width: 44px;
  height: 20px;
  background: var(--white);
  border-radius: 100% 0;
  transform-origin: left center;
}

.contact-botanical i:nth-child(1) { top: 22px; transform: rotate(-35deg); }
.contact-botanical i:nth-child(2) { top: 55px; transform: rotate(25deg) scaleX(-1); }
.contact-botanical i:nth-child(3) { top: 88px; transform: rotate(-32deg); }
.contact-botanical i:nth-child(4) { top: 121px; transform: rotate(28deg) scaleX(-1); }
.contact-botanical i:nth-child(5) { top: 154px; transform: rotate(-28deg); }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0 1.5rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--lavender-dark);
}

.site-footer::before {
  position: absolute;
  top: -280px;
  right: -160px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand > a,
.footer-brand img {
  display: block;
}

.footer-brand img {
  width: 150px;
  margin-top: -2.3rem;
  margin-bottom: 0;
  filter: drop-shadow(0 10px 20px rgba(46, 33, 71, 0.16));
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
}

.site-footer h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: inherit;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer li a,
.footer-contact > a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

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

.footer-contact > a {
  display: inline-block;
  margin-bottom: 0.8rem;
  overflow-wrap: anywhere;
}

.footer-contact > p {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.footer-language {
  margin-top: 1rem;
}

.footer-language button {
  color: rgba(255, 255, 255, 0.7);
}

.footer-language button[aria-pressed="true"] {
  color: var(--plum);
  background: var(--ivory);
}

.footer-language > span {
  background: var(--gold-pale);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.18rem;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item:nth-child(2),
.service-card:nth-child(2),
.timeline-step:nth-child(2) { transition-delay: 70ms; }
.benefit-item:nth-child(3),
.service-card:nth-child(3),
.timeline-step:nth-child(3) { transition-delay: 140ms; }
.benefit-item:nth-child(4),
.service-card:nth-child(4),
.timeline-step:nth-child(4) { transition-delay: 210ms; }
.benefit-item:nth-child(5),
.service-card:nth-child(5),
.timeline-step:nth-child(5) { transition-delay: 280ms; }
.benefit-item:nth-child(6),
.service-card:nth-child(6) { transition-delay: 350ms; }

@keyframes botanical-drift {
  0%, 100% { transform: rotate(17deg) translateX(0); }
  50% { transform: rotate(19deg) translateX(5px); }
}

.lavender-stem {
  animation: botanical-drift 7s ease-in-out infinite;
}

/* Tablet and compact desktop */
@media (max-width: 1180px) {
  :root {
    --header-height: 86px;
  }

  .header-inner {
    width: min(calc(100% - 28px), 1440px);
  }

  .nav-list {
    gap: 0.75rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 3rem;
  }

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

  .benefit-item:nth-child(3n)::after {
    display: none;
  }

  .benefit-item p {
    max-width: 200px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(285px, 0.6fr);
  }
}

@media (max-width: 1040px) {
  .site-header.is-menu-open {
    height: 100dvh;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-menu-open .header-inner {
    height: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    overflow-y: auto;
    place-items: center;
    background: rgba(246, 239, 232, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 320ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-panel {
    width: min(86vw, 600px);
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 8rem 0 3rem;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-list a {
    min-height: 50px;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    font-weight: 600;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-actions {
    justify-content: center;
    flex-direction: column;
  }

  .nav-cta {
    display: inline-flex;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
    background: var(--cream);
  }

  .no-js .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 0.5rem 1rem;
  }

  .no-js .site-nav {
    position: static;
    display: block;
    width: 100%;
    overflow: visible;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .no-js .nav-panel {
    width: 100%;
    padding: 0;
  }

  .no-js .nav-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .no-js .nav-list a {
    font-family: var(--font-body);
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .no-js .hero {
    padding-top: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 760px);
    justify-self: center;
  }

  .about-grid {
    gap: 4rem;
  }

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

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

  .timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    display: grid;
    grid-column: span 2;
    grid-template-columns: 58px 1fr;
    text-align: left;
  }

  .timeline-step:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .step-number {
    width: 50px;
    height: 50px;
    margin: 0;
    box-shadow: none;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1;
  }

  .story-image img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .contact-card {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 2rem;
  }
}

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

  .section {
    padding-block: 6rem;
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .brand {
    width: 62px;
    height: 74px;
  }

  .brand img {
    width: 58px;
  }

  .hero {
    padding: 7.7rem 0 8.3rem;
  }

  .hero::before {
    top: 42%;
    right: -25%;
    width: 130%;
    height: 58%;
    border-radius: 48% 0 0;
  }

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

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    font-size: 0.98rem;
  }

  .hero-image-frame {
    padding: 6px;
    border-radius: 44% 44% 26px 26px / 15% 15% 26px 26px;
  }

  .hero-badge {
    min-height: 50px;
    padding: 0.55rem 0.75rem;
    font-size: 0.65rem;
  }

  .hero-badge-area {
    bottom: -22px;
    left: 2%;
  }

  .hero-badge-time {
    top: -24px;
    right: 2%;
  }

  .lavender-stem {
    right: -35px;
    bottom: -60px;
    transform: scale(0.75) rotate(17deg);
  }

  .curve-bottom {
    bottom: -58px;
    height: 100px;
  }

  .benefit-strip {
    padding-top: 3.5rem;
  }

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

  .benefit-item::after {
    display: none;
  }

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

  .about-visual {
    width: min(86%, 480px);
    margin-inline: auto;
  }

  .about-seal {
    right: -35px;
    width: 100px;
    height: 100px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list li {
    min-height: 60px;
  }

  .about-copy blockquote {
    padding: 1.5rem 1.4rem 1.5rem 3.4rem;
  }

  .services-section {
    margin-top: 2rem;
  }

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

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

  .quote-band-inner,
  .guidance-grid {
    grid-template-columns: 1fr;
  }

  .quote-band .button {
    width: 100%;
    min-width: 0;
  }

  .guidance-intro::after {
    display: none;
  }

  .timeline {
    display: block;
  }

  .timeline-step,
  .timeline-step:nth-child(4) {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
    text-align: left;
  }

  .timeline-step:not(:last-child)::after {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 25px;
    width: 1px;
    content: "";
    background: var(--gold-pale);
  }

  .step-number {
    width: 50px;
    height: 50px;
  }

  .story-card {
    padding: 1rem;
  }

  .story-copy {
    padding: 1.2rem 0.55rem 1.6rem;
  }

  .story-image img {
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .contact-heading {
    margin-bottom: 2.5rem;
  }

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

  .field-full {
    grid-column: auto;
  }

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

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

  .contact-card {
    padding: 1.8rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .header-inner {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16.5vw, 4.3rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero-badge-time {
    top: -28px;
  }

  .benefit-item {
    padding-inline: 0.25rem;
  }

  .benefit-item p {
    font-size: 0.7rem;
  }

  .about-seal {
    right: -24px;
    width: 88px;
    height: 88px;
  }

  .about-seal span {
    font-size: 1.05rem;
  }

  .radio-options {
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .button:hover {
    transform: none;
  }

  .hero-visual {
    transform: none !important;
  }
}

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

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

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

  .inquiry-form.is-highlighted {
    outline: 3px solid var(--lavender);
    outline-offset: 5px;
  }
}

@media print {
  .site-header,
  .menu-toggle,
  .hero-actions,
  .quote-band,
  .inquiry-form,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .hero {
    min-height: 0;
    padding: 2rem 0;
  }

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