:root {
  --ink: #111918;
  --green-950: #071f1e;
  --green-900: #0b302e;
  --green-800: #12413e;
  --green-700: #1d5650;
  --cream: #f5f1e9;
  --paper: #fffdf8;
  --blush: #eadbdd;
  --rose: #a5757b;
  --rose-dark: #80565d;
  --sage: #c9d5c9;
  --line: rgba(17, 25, 24, 0.15);
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --shadow: 0 28px 70px rgba(7, 31, 30, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--rose);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-950);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding: 140px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: rgba(11, 48, 46, 0.1);
  background: rgba(245, 241, 233, 0.93);
  box-shadow: 0 12px 36px rgba(7, 31, 30, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(11, 48, 46, 0.28);
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name strong {
  font-family: var(--font-serif);
  font-size: 1.23rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-name small {
  margin-top: 6px;
  color: rgba(17, 25, 24, 0.62);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 27px;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  background: var(--green-900);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--paper);
  color: var(--green-900);
  box-shadow: 0 12px 24px rgba(7, 31, 30, 0.12);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.68rem;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 158px 0 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(165, 117, 123, 0.09), transparent 27%),
    var(--cream);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 74px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--green-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--rose);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 29px;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 6.25vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.hero h1 em,
.section-heading h2 em,
.process-heading h2 em,
.occasions h2 em {
  color: var(--rose-dark);
  font-weight: 400;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(17, 25, 24, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 25, 24, 0.28);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.text-link span {
  color: var(--rose-dark);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-facts {
  display: grid;
  max-width: 600px;
  margin: 46px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.hero-facts li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-facts span {
  margin-top: 3px;
  color: rgba(17, 25, 24, 0.58);
  font-size: 0.67rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -45px;
  right: -70px;
  width: 78%;
  height: 74%;
  border-radius: 47% 53% 28% 72% / 51% 28% 72% 49%;
  background: var(--blush);
  content: "";
  transform: rotate(7deg);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 10px solid var(--paper);
  border-radius: 46% 4px 4px 4px;
  background: #d6d5cf;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 31, 30, 0.22));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.hero-location {
  position: absolute;
  bottom: -29px;
  left: -24px;
  display: flex;
  min-width: 245px;
  align-items: center;
  gap: 14px;
  padding: 17px 21px;
  border: 1px solid rgba(11, 48, 46, 0.1);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(7, 31, 30, 0.14);
}

.hero-location svg {
  width: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--rose-dark);
  stroke-width: 1.4;
}

.hero-location span {
  display: flex;
  flex-direction: column;
  color: rgba(17, 25, 24, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.hero-location strong {
  margin-bottom: 1px;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0;
}

.bruno-seal {
  position: absolute;
  top: -43px;
  right: -27px;
  width: 142px;
  height: 142px;
  border: 7px solid var(--cream);
  border-radius: 50%;
  background: #030303;
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(7, 31, 30, 0.19);
  transform: rotate(8deg);
}

.bruno-seal img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bruno-seal span {
  position: absolute;
  right: -22px;
  bottom: -14px;
  padding: 9px 15px;
  border: 4px solid var(--cream);
  border-radius: 999px;
  background: var(--rose);
  font-family: var(--font-serif);
  font-size: 0.83rem;
  font-style: italic;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-10deg);
}

.hero-squiggle {
  position: absolute;
  right: -70px;
  bottom: -175px;
  width: 470px;
  height: 330px;
  border: 1px solid rgba(165, 117, 123, 0.28);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.hero-squiggle::before,
.hero-squiggle::after {
  position: absolute;
  border: 1px solid rgba(165, 117, 123, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-squiggle::before {
  inset: 27px -35px -20px 50px;
}

.hero-squiggle::after {
  inset: -36px 52px 31px -26px;
}

.marquee {
  overflow: hidden;
  padding: 19px 0;
  background: var(--green-900);
  color: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee span {
  padding: 0 36px;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  font-style: italic;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee i {
  color: var(--rose);
  font-size: 0.55rem;
  font-style: normal;
}

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

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 125px;
}

.story-media {
  position: relative;
  min-height: 720px;
}

.story-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 88%;
  margin: 0;
  overflow: hidden;
  border-radius: 170px 3px 3px 3px;
  background: #d8d8d2;
}

.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.story-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(11, 48, 46, 0.14);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.story-image-small img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 47% 43%;
}

.story-image-small figcaption {
  padding: 8px 5px 3px;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 0.84rem;
  font-style: italic;
  text-align: center;
}

.story-stamp {
  position: absolute;
  top: 25px;
  right: 0;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  transform: rotate(8deg);
}

.story-stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 50%;
  content: "";
}

.section-kicker {
  margin-bottom: 23px;
}

.story-copy h2,
.section-heading h2,
.occasions h2,
.process-heading h2,
.faq-intro h2,
.inquiry-copy h2 {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 5.2vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.story-intro {
  margin-bottom: 20px;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.36;
}

.story-copy > p:not(.section-kicker):not(.story-intro) {
  color: rgba(17, 25, 24, 0.67);
  line-height: 1.82;
}

.promise-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.promise-list article {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 47px 1fr;
}

.promise-list article > span {
  padding-top: 2px;
  color: var(--rose-dark);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
}

.promise-list h3 {
  margin: 0 0 3px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.promise-list p {
  margin: 0;
  color: rgba(17, 25, 24, 0.58);
  font-size: 0.84rem;
}

.offerings {
  overflow: hidden;
  background: var(--blush);
}

.offerings::before {
  position: absolute;
  top: -170px;
  right: -90px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(128, 86, 93, 0.2);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 68px;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: rgba(17, 25, 24, 0.68);
  line-height: 1.8;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  position: relative;
  min-height: 500px;
  padding: 35px 34px 32px;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 46, 0.12);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.86);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(62, 35, 39, 0.12);
}

.offer-card-featured {
  background: var(--green-900);
  color: var(--paper);
  transform: translateY(-20px);
}

.offer-card-featured:hover {
  transform: translateY(-28px);
}

.offer-card::after {
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(165, 117, 123, 0.25);
  border-radius: 50%;
  content: "";
}

.offer-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}

.card-number {
  color: var(--rose-dark);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
}

.offer-card-featured .card-number {
  color: var(--blush);
}

.offer-icon {
  width: 59px;
  fill: none;
  stroke: var(--rose-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.offer-card-featured .offer-icon {
  stroke: var(--blush);
}

.offer-card h3 {
  max-width: 300px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.offer-card > p {
  margin-bottom: 27px;
  color: rgba(17, 25, 24, 0.65);
  font-size: 0.91rem;
  line-height: 1.72;
}

.offer-card-featured > p {
  color: rgba(255, 253, 248, 0.7);
}

.offer-card ul {
  display: flex;
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  padding: 6px 10px;
  border: 1px solid rgba(11, 48, 46, 0.16);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-card-featured li {
  border-color: rgba(255, 253, 248, 0.22);
}

.offer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 50px 0 0;
  color: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  text-align: center;
}

.offer-note span {
  color: var(--rose-dark);
  font-style: normal;
}

.occasions {
  overflow: hidden;
  background: var(--green-950);
  color: var(--paper);
}

.occasion-orb {
  position: absolute;
  border: 1px solid rgba(234, 219, 221, 0.12);
  border-radius: 50%;
}

.occasion-orb-one {
  top: -260px;
  left: -250px;
  width: 690px;
  height: 690px;
}

.occasion-orb-two {
  right: -180px;
  bottom: -360px;
  width: 620px;
  height: 620px;
}

.occasions-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 120px;
}

.section-kicker-light {
  color: var(--blush);
}

.occasions h2 {
  color: var(--paper);
  font-size: clamp(3.5rem, 5.6vw, 5.7rem);
}

.occasions h2 em {
  color: var(--blush);
}

.occasions-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.65);
  line-height: 1.85;
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--green-950);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--paper);
}

.occasion-list {
  border-top: 1px solid rgba(255, 253, 248, 0.17);
}

.occasion-list article {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.17);
  grid-template-columns: 45px 0.65fr 1fr;
  align-items: baseline;
  gap: 22px;
  transition: padding-left 180ms ease, color 180ms ease;
}

.occasion-list article:hover {
  padding-left: 10px;
  color: var(--blush);
}

.occasion-list span {
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
}

.occasion-list h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.occasion-list p {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.82rem;
  line-height: 1.65;
}

.process {
  background: var(--paper);
}

.process-heading {
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}

.process-heading .section-kicker {
  justify-content: center;
}

.process-heading > p:not(.section-kicker) {
  max-width: 530px;
  margin: 0 auto;
  color: rgba(17, 25, 24, 0.62);
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-steps li {
  position: relative;
  padding: 0 54px;
  text-align: center;
}

.step-number {
  display: grid;
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin: 0 auto 27px;
  place-items: center;
  border: 1px solid rgba(11, 48, 46, 0.22);
  border-radius: 50%;
  background: var(--paper);
  color: var(--rose-dark);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.step-line {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  border-top: 1px dashed rgba(11, 48, 46, 0.25);
}

.process-steps h3 {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 1.52rem;
  font-weight: 600;
}

.process-steps p {
  margin: 0;
  color: rgba(17, 25, 24, 0.58);
  font-size: 0.86rem;
  line-height: 1.72;
}

.faq {
  padding-top: 120px;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 120px;
}

.faq-intro h2 {
  font-size: clamp(3rem, 4.5vw, 4.7rem);
}

.faq-intro > p:not(.section-kicker) {
  color: rgba(17, 25, 24, 0.62);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(11, 48, 46, 0.22);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--green-900);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::before {
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -6px 60px 30px 0;
  color: rgba(17, 25, 24, 0.63);
  font-size: 0.9rem;
  line-height: 1.8;
}

.inquiry {
  padding-top: 65px;
  background: var(--cream);
}

.inquiry-shell {
  display: grid;
  position: relative;
  padding: 74px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green-900);
  color: var(--paper);
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 90px;
}

.inquiry-shell::before {
  position: absolute;
  bottom: -260px;
  left: -250px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(234, 219, 221, 0.15);
  border-radius: 50%;
  content: "";
}

.inquiry-copy {
  position: relative;
  z-index: 1;
}

.inquiry-copy h2 {
  color: var(--paper);
  font-size: clamp(3.3rem, 5vw, 5rem);
}

.inquiry-copy > p:not(.section-kicker) {
  color: rgba(255, 253, 248, 0.65);
  line-height: 1.82;
}

.contact-links {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 253, 248, 0.17);
}

.contact-links a {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.17);
  grid-template-columns: 39px 1fr;
  align-items: center;
}

.contact-links a > span {
  color: var(--blush);
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.contact-links a:hover > span {
  transform: translate(3px, -3px);
}

.contact-links div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-links small {
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inquiry-form {
  position: relative;
  z-index: 1;
  padding: 39px;
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
}

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

.inquiry-form label {
  display: block;
  margin-bottom: 19px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inquiry-form label > span {
  color: var(--rose-dark);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 48, 46, 0.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-form textarea {
  min-height: 98px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 1px 0 var(--rose-dark);
}

.inquiry-form input[aria-invalid="true"],
.inquiry-form select[aria-invalid="true"],
.inquiry-form textarea[aria-invalid="true"] {
  border-color: #a53939;
  box-shadow: 0 1px 0 #a53939;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(17, 25, 24, 0.38);
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #8a2929 !important;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.field-error[hidden],
.form-alert[hidden],
.turnstile-loading[hidden] {
  display: none;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-form .privacy-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 2px 0 8px;
  color: rgba(17, 25, 24, 0.73);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.inquiry-form .privacy-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--green-900);
  box-shadow: none;
}

.inquiry-form .privacy-field span {
  color: inherit;
}

.inquiry-form .privacy-field a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 65, 62, 0.35);
  text-underline-offset: 2px;
}

.inquiry-form .privacy-field b {
  color: var(--rose-dark);
  font-weight: 800;
}

.privacy-error {
  margin: -2px 0 8px 29px;
}

.form-privacy {
  margin: 0 0 18px 29px;
  color: rgba(17, 25, 24, 0.48);
  font-size: 0.62rem;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 65, 62, 0.3);
  text-underline-offset: 2px;
}

.turnstile-shell {
  min-height: 70px;
  margin: 4px 0 15px;
}

.turnstile-loading {
  display: flex;
  min-height: 65px;
  align-items: center;
  margin: 0;
  color: rgba(17, 25, 24, 0.52);
  font-size: 0.68rem;
}

#turnstile-widget {
  max-width: 100%;
}

.form-status,
.form-alert {
  margin: 0 0 13px;
  border-radius: 2px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-status:not(:empty),
.form-alert:not(:empty) {
  padding: 10px 12px;
}

.form-status:not(:empty) {
  background: rgba(18, 65, 62, 0.08);
  color: var(--green-800);
}

.form-status.is-success {
  border-left: 3px solid var(--green-700);
  background: rgba(18, 65, 62, 0.11);
  font-weight: 650;
}

.form-alert {
  border-left: 3px solid #a53939;
  background: rgba(165, 57, 57, 0.08);
  color: #762525;
}

.form-alert a,
.noscript-form a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button-form {
  width: 100%;
  margin-top: 5px;
}

.button-form:disabled {
  cursor: wait;
  opacity: 0.58;
}

.button-form:disabled:hover {
  transform: none;
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--paper);
  box-shadow: none;
}

.form-note {
  margin: 12px auto 0;
  color: rgba(17, 25, 24, 0.48);
  font-size: 0.62rem;
  line-height: 1.55;
  text-align: center;
}

.noscript-form {
  margin: 14px 0 0;
  padding: 11px 12px;
  border-left: 3px solid var(--rose-dark);
  background: rgba(165, 117, 123, 0.1);
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.55;
}

.site-footer {
  padding: 85px 0 28px;
  background: var(--cream);
}

.footer-top {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.1fr 0.7fr auto;
  align-items: center;
  gap: 50px;
}

.brand-footer .brand-mark {
  background: var(--green-900);
}

.footer-top > p {
  margin: 0;
  color: rgba(17, 25, 24, 0.58);
  font-size: 0.8rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 48, 46, 0.3);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
}

.footer-cta span {
  color: var(--rose-dark);
  transition: transform 180ms ease;
}

.footer-cta:hover span {
  transform: translate(4px, -4px);
}

.footer-bottom {
  display: grid;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: rgba(17, 25, 24, 0.53);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.footer-bottom a:hover {
  color: var(--rose-dark);
}

.legal-page {
  background:
    radial-gradient(circle at 82% 7%, rgba(165, 117, 123, 0.12), transparent 24rem),
    var(--cream);
}

.legal-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(11, 48, 46, 0.1);
  background: rgba(245, 241, 233, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 48, 46, 0.25);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-back span {
  color: var(--rose-dark);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.legal-back:hover span,
.legal-back:focus-visible span {
  transform: translateX(-4px);
}

.legal-main {
  min-height: calc(100vh - 260px);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  border-bottom: 1px solid var(--line);
}

.legal-hero::after {
  position: absolute;
  right: -72px;
  bottom: -145px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(165, 117, 123, 0.24);
  border-radius: 50%;
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-hero .section-kicker {
  margin-bottom: 21px;
}

.legal-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.legal-hero p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(17, 25, 24, 0.65);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.legal-layout {
  display: grid;
  padding-top: 82px;
  padding-bottom: 120px;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: space-between;
  gap: 78px;
}

.legal-toc {
  position: sticky;
  top: 32px;
  align-self: start;
  padding: 24px 0;
  border-top: 1px solid var(--green-900);
  border-bottom: 1px solid var(--line);
}

.legal-toc > p {
  margin-bottom: 16px;
  color: rgba(17, 25, 24, 0.48);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 7px;
}

.legal-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 25, 24, 0.7);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.4;
}

.legal-toc a::before {
  width: 0;
  height: 1px;
  background: var(--rose-dark);
  content: "";
  transition: width 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--green-900);
}

.legal-toc a:hover::before,
.legal-toc a:focus-visible::before {
  width: 15px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 48px;
  scroll-margin-top: 32px;
}

.legal-content section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 21px;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-content h3 {
  margin-bottom: 9px;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 550;
}

.legal-content p,
.legal-content li,
.legal-address,
.legal-data {
  color: rgba(17, 25, 24, 0.72);
  font-size: 0.91rem;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content a:not(.legal-placeholder) {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 65, 62, 0.28);
  text-underline-offset: 3px;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  text-decoration-color: var(--rose-dark);
}

.legal-address {
  padding: 22px 25px;
  border-left: 3px solid var(--rose-dark);
  background: rgba(255, 253, 248, 0.62);
  font-style: normal;
}

.legal-address strong {
  color: var(--green-950);
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 25px;
}

.legal-data > div:first-child {
  border-top: 1px solid var(--line);
}

.legal-data dt {
  color: rgba(17, 25, 24, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
}

.legal-data-pending dd {
  line-height: 1.55;
}

.legal-placeholder {
  display: inline;
  padding: 2px 5px;
  border-radius: 2px;
  background: rgba(165, 117, 123, 0.17);
  color: #754d54;
  font-weight: 750;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-draft-notice {
  display: grid;
  margin-bottom: 60px;
  padding: 24px;
  border: 1px solid rgba(165, 117, 123, 0.35);
  border-radius: 3px;
  background: rgba(234, 219, 221, 0.46);
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
}

.legal-draft-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-dark);
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.legal-draft-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green-950);
  font-size: 0.82rem;
}

.legal-draft-notice p {
  margin: 0;
  color: rgba(17, 25, 24, 0.68);
  font-size: 0.77rem;
  line-height: 1.65;
}

.legal-callout {
  margin: 27px 0;
  padding: 25px;
  border: 1px solid rgba(11, 48, 46, 0.15);
  background: var(--paper);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  margin: 4px 0 0;
  color: rgba(17, 25, 24, 0.46) !important;
  font-size: 0.67rem !important;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-footer {
  padding: 27px 0;
  border-top: 1px solid var(--line);
  background: var(--green-950);
  color: rgba(255, 253, 248, 0.72);
}

.legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer p {
  margin: 0;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 24px;
}

.legal-footer a:hover,
.legal-footer a:focus-visible,
.legal-footer a[aria-current="page"] {
  color: var(--paper);
}

.confirmation-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.confirmation-header {
  padding: 28px 0;
}

.confirmation-header .brand {
  width: fit-content;
}

.confirmation-main {
  display: grid;
  flex: 1;
  padding: 40px 0 90px;
  place-items: center;
}

.confirmation-card {
  width: min(680px, calc(100% - 36px));
  padding: clamp(38px, 7vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(11, 48, 46, 0.1);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.confirmation-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--paper);
  font-size: 1.7rem;
}

.confirmation-card h1 {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.confirmation-card > p {
  max-width: 490px;
  margin: 0 auto 30px;
  color: rgba(17, 25, 24, 0.64);
}

.confirmation-footer {
  padding: 24px 0;
  color: rgba(17, 25, 24, 0.53);
  font-size: 0.68rem;
  text-align: center;
}

.confirmation-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}

.confirmation-footer nav {
  display: flex;
  gap: 18px;
}

.confirmation-footer a {
  color: var(--green-800);
  font-weight: 700;
}

.confirmation-footer a:hover,
.confirmation-footer a:focus-visible {
  color: var(--rose-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal-delay {
  transition-delay: 110ms;
}

.js .reveal-delay-2 {
  transition-delay: 220ms;
}

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

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

  .primary-nav {
    gap: 19px;
  }

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

  .hero h1 {
    font-size: clamp(4rem, 7vw, 5.6rem);
  }

  .story-grid,
  .occasions-inner {
    gap: 70px;
  }

  .story-media {
    min-height: 630px;
  }

  .inquiry-shell {
    padding: 55px;
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
    gap: 55px;
  }

  .legal-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 105px 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 88px);
    padding: 54px 24px 36px;
    transform: translateX(100%);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, visibility 220ms;
  }

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

  .primary-nav > a:not(.button) {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 500;
  }

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

  .primary-nav .button {
    width: 100%;
    margin-top: 34px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

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

  .hero h1 {
    font-size: clamp(4.2rem, 11vw, 6.4rem);
  }

  .hero-visual {
    width: min(760px, 92%);
    margin-left: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .story-media {
    min-height: 730px;
  }

  .story-image-main {
    width: 80%;
  }

  .story-image-small {
    width: 30%;
  }

  .story-copy {
    max-width: 720px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .offer-card {
    min-height: 420px;
  }

  .offer-card-featured,
  .offer-card-featured:hover {
    transform: none;
  }

  .occasions-inner {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .process-steps li {
    padding: 0 23px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    max-width: 590px;
  }

  .inquiry-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .inquiry-copy {
    max-width: 620px;
  }

  .contact-links {
    max-width: 500px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }
}

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

  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name strong {
    font-size: 1.08rem;
  }

  .brand-name small {
    margin-top: 4px;
    font-size: 0.52rem;
  }

  .legal-header-inner {
    min-height: 76px;
  }

  .legal-back {
    font-size: 0;
  }

  .legal-back span {
    font-size: 1.35rem;
  }

  .legal-hero {
    padding: 68px 0 58px;
  }

  .legal-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
    overflow-wrap: anywhere;
  }

  .legal-layout {
    padding-top: 55px;
    padding-bottom: 82px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    padding-bottom: 39px;
  }

  .legal-content section + section {
    padding-top: 39px;
  }

  .legal-draft-notice {
    margin-bottom: 46px;
    padding: 19px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .legal-draft-icon {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .legal-address {
    padding: 18px;
  }

  .legal-data > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

  .confirmation-footer-inner {
    flex-direction: column;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    top: 76px;
    height: calc(100dvh - 76px);
  }

  .hero {
    min-height: auto;
    padding: 122px 0 82px;
  }

  .hero-grid {
    gap: 66px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 18px;
    font-size: 0.6rem;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.65rem, 18vw, 5.2rem);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

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

  .hero-facts li,
  .hero-facts li + li {
    display: grid;
    padding: 10px 0;
    border: 0;
    grid-template-columns: 110px 1fr;
  }

  .hero-facts span {
    align-self: center;
    margin: 0;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: 4 / 4.25;
    border-width: 6px;
    border-radius: 42% 3px 3px 3px;
  }

  .hero-image-wrap img {
    object-position: 48% 50%;
  }

  .hero-location {
    bottom: -42px;
    left: 10px;
    min-width: 215px;
    padding: 13px 16px;
  }

  .bruno-seal {
    top: -38px;
    right: -10px;
    width: 110px;
    height: 110px;
    border-width: 5px;
  }

  .bruno-seal span {
    right: -10px;
    bottom: -18px;
    padding: 7px 12px;
    border-width: 3px;
    font-size: 0.72rem;
  }

  .marquee {
    padding: 15px 0;
  }

  .marquee span {
    padding: 0 24px;
  }

  .story-grid {
    gap: 66px;
  }

  .story-media {
    min-height: 525px;
  }

  .story-image-main {
    width: 85%;
    height: 88%;
    border-radius: 110px 3px 3px 3px;
  }

  .story-image-small {
    width: 36%;
  }

  .story-stamp {
    top: 18px;
    width: 88px;
    height: 88px;
    font-size: 0.82rem;
  }

  .story-copy h2,
  .section-heading h2,
  .occasions h2,
  .process-heading h2,
  .faq-intro h2,
  .inquiry-copy h2 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .story-intro {
    font-size: 1.3rem;
  }

  .promise-list article {
    grid-template-columns: 40px 1fr;
  }

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

  .offer-card {
    min-height: 455px;
    padding: 29px 25px;
  }

  .offer-card-top {
    margin-bottom: 70px;
  }

  .offer-card ul {
    right: 25px;
    bottom: 29px;
    left: 25px;
  }

  .offer-note {
    align-items: flex-start;
    font-size: 0.98rem;
  }

  .occasions-inner {
    gap: 55px;
  }

  .occasion-list article {
    padding: 23px 0;
    grid-template-columns: 34px 1fr;
    gap: 6px 13px;
  }

  .occasion-list article p {
    grid-column: 2;
  }

  .process-heading {
    margin-bottom: 55px;
    text-align: left;
  }

  .process-heading .section-kicker {
    justify-content: flex-start;
  }

  .process-heading > p:not(.section-kicker) {
    margin-left: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-steps li {
    display: grid;
    padding: 0;
    text-align: left;
    grid-template-columns: 58px 1fr;
    column-gap: 19px;
  }

  .step-number {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .step-line {
    top: 59px;
    left: 28px;
    width: 1px;
    height: 48px;
    border-top: 0;
    border-left: 1px dashed rgba(11, 48, 46, 0.25);
  }

  .process-steps h3 {
    margin: 2px 0 5px;
  }

  .faq {
    padding-top: 75px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.12rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .inquiry {
    padding-top: 30px;
  }

  .inquiry .container {
    width: 100%;
  }

  .inquiry-shell {
    padding: 65px 18px 18px;
    border-radius: 0;
    gap: 45px;
  }

  .inquiry-copy {
    padding-inline: 2px;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

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

  .site-footer {
    padding-top: 65px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top > p {
    padding-left: 54px;
  }

  .footer-cta {
    justify-content: space-between;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .footer-bottom p:nth-child(2) {
    text-align: left;
  }

  .footer-bottom div {
    justify-content: flex-start;
    margin-top: 6px;
  }
}

@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;
  }
}
