:root {
  --violet: #654ea3;
  --violet-deep: #4a347a;
  --orchid: #eaafc8;
  --blush: #ffdde1;
  --green: #70ac65;
  --green-deep: #4f8747;
  --ink: #444;
  --muted: #6b6670;
  --ivory: rgb(255 255 251 / 94%);
  --line: rgb(101 78 163 / 16%);
  --line-strong: rgb(101 78 163 / 26%);
  --focus: #264f21;
  --surface: #fff;
  --shadow-page: 0 24px 70px rgb(56 35 79 / 20%), 0 3px 15px rgb(0 0 0 / 8%);
  --shadow-soft: 0 10px 24px rgb(79 135 71 / 22%);
  --radius-page: 30px;
  --radius-panel: 24px;
  --radius-control: 999px;
  --wrap: min(1180px, calc(100vw - 36px));
  --space-page-x: clamp(28px, 7vw, 92px);
  --space-section-y: clamp(52px, 7vw, 90px);
  --step-1: 0.5rem;
  --step-2: 0.75rem;
  --step-3: 1rem;
  --step-4: 1.5rem;
  --step-5: 2rem;
  --step-6: 3rem;
  --type-display: clamp(2.35rem, 5vw, 5.45rem);
  --type-section: clamp(1.75rem, 3vw, 2.8rem);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body.site {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Verdana, Geneva, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 10%, rgb(255 255 255 / 28%), transparent 27rem),
    radial-gradient(circle at 86% 82%, rgb(101 78 163 / 22%), transparent 30rem),
    linear-gradient(35deg, var(--violet) 0%, #9d79ad 31%, var(--orchid) 67%, var(--blush) 100%);
  overflow-wrap: anywhere;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  overflow-wrap: anywhere;
}

:target {
  scroll-margin-top: 1.5rem;
}

.skip {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  max-width: calc(100vw - 1.5rem);
  padding: 0.7rem 1rem;
  border: 2px solid var(--focus);
  border-radius: var(--radius-control);
  color: var(--violet-deep);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-page);
  transform: translateY(calc(-100% - 1rem));
  transition: transform 0.18s ease;
}

.skip:focus {
  transform: translateY(0);
  outline: none;
}

.top {
  width: var(--wrap);
  margin: 0 auto;
  padding: 26px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  text-decoration: none;
}

.brand img,
.brand svg {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 7px;
  border: 5px solid var(--green);
  border-radius: 50%;
  background: rgb(255 255 251 / 90%);
  box-shadow: 0 8px 22px rgb(74 52 122 / 16%);
}

.brand span {
  color: #fff;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgb(70 42 92 / 28%);
}

.nav,
.locale {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.nav a,
.locale a,
.locale span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: var(--radius-control);
  color: var(--violet-deep);
  background: rgb(255 255 251 / 72%);
  font-size: 0.84rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(74 52 122 / 8%);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}


.locale span[aria-disabled="true"] {
  opacity: 0.48;
  cursor: default;
}
.nav a[aria-current="page"],
.locale a[aria-current="page"] {
  color: #fff;
  border-color: rgb(255 255 255 / 25%);
  background: var(--violet);
}

.page {
  position: relative;
  isolation: isolate;
  width: var(--wrap);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: var(--radius-page);
  background: var(--ivory);
  box-shadow: var(--shadow-page);
}

.page::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("../img/botanical-pattern.avif");
  background-size: 390px;
  opacity: 0.04;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 610px;
  padding: clamp(34px, 6vw, 82px);
}

.hero > :only-child {
  grid-column: 1 / -1;
  max-width: 52rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--violet-deep);
  font-size: var(--type-display);
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.lead {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  text-align: left;
}

.proof {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--green-deep);
  font-size: 0.94rem;
  font-weight: 700;
}

.proof::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgb(112 172 101 / 16%);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 11px 18px;
  border: 2px solid var(--violet);
  border-radius: var(--radius-control);
  color: var(--violet);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.primary {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: var(--shadow-soft);
}

.photo {
  position: relative;
  min-width: 0;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(101 78 163 / 15%);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 10%), rgb(48 30 78 / 25%)),
    linear-gradient(145deg, #bb91b9 0%, #78589b 45%, #493372 100%);
  box-shadow: 0 18px 46px rgb(74 52 122 / 20%);
  aspect-ratio: 4 / 5;
}

.photo[data-ratio="action"] {
  aspect-ratio: 4 / 3;
  min-height: 340px;
}

.photo[data-ratio="venue"] {
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.photo[data-ratio="portrait"] {
  aspect-ratio: 4 / 5;
}

.photo img,
.photo svg,
.photo picture {
  width: 100%;
  height: 100%;
}

.photo img,
.photo picture > img,
.photo svg {
  object-fit: cover;
  object-position: center;
}

.photo figcaption,
.photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 15px;
  color: var(--violet-deep);
  background: rgb(255 255 251 / 88%);
  font-size: 0.78rem;
  line-height: 1.45;
  box-shadow: 0 6px 24px rgb(44 29 68 / 12%);
  backdrop-filter: blur(7px);
}

.price {
  display: grid;
  grid-template-columns: minmax(11rem, 0.9fr) repeat(auto-fit, minmax(10.5rem, 1fr));
  align-items: stretch;
  margin: 0 clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgb(112 172 101 / 8%), rgb(255 255 255 / 40%), rgb(101 78 163 / 6%));
}

.price h2 {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 28px clamp(18px, 3vw, 34px);
  color: var(--green-deep);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.price div {
  min-width: 0;
  padding: 26px clamp(18px, 3vw, 34px);
  border-left: 1px solid var(--line);
}

.price strong {
  display: block;
  color: var(--violet-deep);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.section {
  padding: var(--space-section-y) var(--space-page-x);
}

.section + .section,
.price + .section,
.related {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 34px;
}

.section h2,
.section-head h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: var(--type-section);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.section h3 {
  color: var(--violet-deep);
}

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

.section > p:last-child,
.section > ul:last-child,
.section > ol:last-child {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.step:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.step:nth-child(even) {
  padding-left: 34px;
}

.step > b:first-child {
  color: var(--orchid);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.step h3 {
  margin: 0 0 7px;
  color: var(--violet-deep);
  font-size: 1.03rem;
  line-height: 1.35;
}

.step p {
  margin: 0;
  font-size: 0.94rem;
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.fit > h2:first-child {
  position: sticky;
  top: 24px;
}

.fit ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fit li {
  position: relative;
  padding: 18px 10px 18px 34px;
  border-bottom: 1px solid var(--line);
}

.fit li::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 3px;
  width: 13px;
  height: 7px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: rotate(-45deg);
}

.note {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--orchid);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.quote {
  position: relative;
  margin: 28px 0 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: rgb(255 255 255 / 54%);
  box-shadow: 0 12px 32px rgb(74 52 122 / 8%);
}

.quote::before {
  content: "“";
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  color: rgb(234 175 200 / 48%);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  pointer-events: none;
}

.quote[data-family="owner"] {
  border-left: 5px solid var(--green);
  background: linear-gradient(120deg, rgb(112 172 101 / 8%), rgb(255 255 255 / 56%));
}

.quote[data-family="customer"] {
  border-left: 5px solid var(--orchid);
}

.quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.quote footer,
.quote figcaption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--violet-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.cta {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(18px, 4vw, 46px) clamp(18px, 4vw, 46px);
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-panel);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet) 52%, #8d6ca8);
  box-shadow: 0 18px 48px rgb(74 52 122 / 23%);
}

.cta::after {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgb(255 255 255 / 4.5%), 0 0 0 110px rgb(255 255 255 / 3%);
  pointer-events: none;
}

.cta h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

.cta > p:not(.note) {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 87%);
}

.cta .actions,
.cta .note {
  position: relative;
  z-index: 1;
}

.cta .button {
  color: #fff;
  border-color: rgb(255 255 255 / 74%);
}

.cta .button.primary {
  color: var(--violet-deep);
  border-color: #fff;
  background: #fff;
}

.cta .note {
  max-width: 46rem;
  margin-top: 18px;
  color: rgb(255 255 255 / 78%);
  border-left-color: var(--orchid);
}

.related {
  padding: clamp(34px, 5vw, 58px) var(--space-page-x) clamp(52px, 7vw, 84px);
}

.related h2 {
  margin: 0 0 24px;
  color: var(--green-deep);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.related nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.related a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 18px 8px 0;
  padding: 10px 18px 10px 0;
  color: var(--violet-deep);
  border-bottom: 1px solid rgb(101 78 163 / 22%);
  text-decoration: none;
}

.related a::after {
  content: "↗";
  flex: none;
  color: var(--green);
}

.foot {
  width: var(--wrap);
  margin: 24px auto 0;
  padding: 24px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  font-size: 0.85rem;
  text-shadow: 0 1px 5px rgb(57 35 78 / 22%);
}

.foot p {
  margin: 0;
}

.foot > a {
  text-underline-offset: 3px;
}

.foot .locale {
  justify-content: center;
}

.foot .locale a,
.foot .locale span {
  min-height: 32px;
  padding: 6px 10px;
  background: rgb(255 255 251 / 68%);
  text-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover,
  .locale a:hover {
    border-color: var(--green);
    background: #fff;
    transform: translateY(-1px);
  }

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

  .related a:hover {
    border-color: var(--green);
  }
}

.nav a:focus-visible,
.locale a:focus-visible,
.brand:focus-visible,
.button:focus-visible,
.related a:focus-visible,
.foot > a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 5px rgb(255 255 255 / 72%), 0 0 0 8px var(--focus);
}

.cta .button:focus-visible {
  box-shadow: 0 0 0 4px rgb(74 52 122 / 72%), 0 0 0 7px #fff;
}

@media (max-width: 980px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .photo {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

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

  .price h2 {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .price div:nth-of-type(odd) {
    border-left: 0;
  }

  .price div:nth-of-type(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-head,
  .fit {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .fit > h2:first-child {
    position: static;
  }

  .foot {
    flex-wrap: wrap;
  }
}

@media (max-width: 690px) {
  :root {
    --wrap: min(calc(100% - 20px), 1180px);
    --radius-page: 22px;
    --radius-panel: 18px;
  }

  .top {
    gap: 15px;
    padding-top: 14px;
  }

  .brand img,
  .brand svg {
    width: 52px;
    height: 52px;
  }

  .brand span {
    font-size: 1.6rem;
  }

  .nav {
    width: calc(100vw - 20px);
    padding: 2px 1px 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: none;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .hero {
    gap: 30px;
    padding: 34px 24px 42px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .photo,
  .photo[data-ratio] {
    min-height: 360px;
    border-radius: var(--radius-panel);
    aspect-ratio: 4 / 5;
  }

  .photo figcaption,
  .photo-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .price {
    grid-template-columns: minmax(0, 1fr);
    margin: 0 10px;
  }

  .price h2 {
    grid-column: auto;
  }

  .price div,
  .price div:nth-of-type(n) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 48px 24px;
  }

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

  .step,
  .step:nth-child(odd),
  .step:nth-child(even) {
    padding: 23px 0;
    border-right: 0;
  }

  .cta {
    margin: 0 10px 10px;
    padding: 42px 24px;
  }

  .related {
    padding: 38px 24px 50px;
  }

  .related nav {
    display: block;
  }

  .related a {
    display: flex;
    margin-right: 0;
  }

  .foot {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 6px;
    padding-left: 6px;
  }

  .foot .locale {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
}

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

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

@media (forced-colors: active) {
  .page,
  .photo,
  .quote,
  .cta,
  .nav a,
  .locale a,
  .button {
    border: 1px solid CanvasText;
  }

  .proof::before,
  .fit li::before {
    forced-color-adjust: none;
  }
}

/* Public release integration: localized varied prices and accessible CTA disclosure states. */
.price .varied strong {
  max-width: 24rem;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.actions > .note {
  flex-basis: 100%;
  margin-top: 0;
}

@media (hover: hover) and (pointer: fine) {
  .actions > .note {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-0.25rem);
    transition: max-height 0.18s ease, margin-top 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  }

  .actions > .button:hover + .note,
  .actions > .button:focus-visible + .note,
  .actions > .note:hover {
    max-height: 8rem;
    margin-top: 0.55rem;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .actions > .note {
    display: block;
    width: 100%;
    max-height: none;
    margin-top: 0.55rem;
    overflow: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  .actions > .note {
    display: block;
    width: 100%;
    max-height: none;
    margin-top: 0.55rem;
    overflow: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
