:root {
  --paper: #fffaf3;
  --paper-deep: #f7efe5;
  --ink: #24344f;
  --ink-soft: #5e6879;
  --berry: #a13d67;
  --berry-dark: #782a4c;
  --peach: #f5b8aa;
  --apricot: #f5bd67;
  --sky: #b9dce9;
  --sky-deep: #79abc3;
  --mint: #c7ded2;
  --white: #ffffff;
  --line: rgba(36, 52, 79, 0.14);
  --shadow: 0 24px 70px rgba(62, 54, 70, 0.13);
  --shadow-small: 0 14px 34px rgba(62, 54, 70, 0.1);
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1320px, calc(100vw - 48px));
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 184, 170, 0.2), transparent 28rem),
    radial-gradient(circle at 95% 30%, rgba(185, 220, 233, 0.3), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--berry-dark);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(215px, 1fr) auto auto minmax(215px, 1fr);
  align-items: center;
  width: var(--page);
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.83);
  box-shadow: 0 10px 30px rgba(64, 46, 58, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 200ms ease, box-shadow 200ms ease, top 200ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 14px 44px rgba(64, 46, 58, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 16px 16px 16px 7px;
  color: var(--white);
  background: var(--berry);
  box-shadow: inset 0 -4px 0 rgba(74, 21, 48, 0.16);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transform: rotate(-3deg);
}

.brand__copy {
  display: grid;
  line-height: 1.1;
}

.brand__copy strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(161, 61, 103, 0.08);
}

.language-picker {
  position: relative;
  justify-self: end;
  margin-left: 8px;
}

.language-picker select {
  min-width: 62px;
  height: 42px;
  padding: 0 25px 0 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.language-picker select:hover {
  border-color: rgba(161, 61, 103, 0.28);
  background-color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--berry);
  box-shadow: inset 0 -3px 0 rgba(72, 19, 43, 0.16);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  justify-self: end;
  gap: 10px;
}

html[lang="zh-CN"] .display-title,
html[lang="zh-CN"] .section-title,
html[lang="zh-CN"] .product-card__body h3,
html[lang="zh-CN"] .addon-group h3,
html[lang="zh-CN"] .process-step h3,
html[lang="zh-CN"] .shipping-option strong,
html[lang="zh-CN"] .faq summary,
html[lang="zh-CN"] .footer__brand {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  letter-spacing: -0.025em;
}

html[lang="zh-CN"] .display-title,
html[lang="zh-CN"] .section-title {
  line-height: 1.12;
}

.header-cta:hover,
.button:hover {
  background: var(--berry-dark);
  box-shadow: inset 0 -3px 0 rgba(44, 10, 27, 0.2), 0 12px 24px rgba(120, 42, 76, 0.18);
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: inset 0 0 0 1px rgba(36, 52, 79, 0.12);
}

.button--light:hover {
  color: var(--berry-dark);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(161, 61, 103, 0.26), 0 12px 24px rgba(62, 54, 70, 0.08);
}

.button--text {
  min-height: auto;
  padding: 0 0 5px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--berry-dark);
  background: transparent;
  box-shadow: none;
}

.button--text:hover {
  color: var(--berry);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

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

.section__inner {
  width: var(--page);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--berry-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.display-title {
  max-width: 840px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-title {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  padding: 135px max(24px, calc((100vw - 1320px) / 2)) 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.9) 40%, rgba(255, 250, 243, 0.28) 72%, rgba(255, 250, 243, 0.1) 100%),
    url("images/clouds-bg.jpg") center / cover;
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  content: "";
}

.hero::before {
  top: -110px;
  right: 15%;
  width: 360px;
  aspect-ratio: 1;
  background: rgba(245, 184, 170, 0.3);
}

.hero::after {
  bottom: -160px;
  left: -70px;
  width: 420px;
  aspect-ratio: 1;
  background: rgba(185, 220, 233, 0.48);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero__copy {
  padding: 54px 0 30px;
}

.hero__copy .display-title {
  max-width: 680px;
}

.hero__body {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero__actions .button {
  min-height: 56px;
  padding: 0 24px;
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 610px);
}

.hero__photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86;
  border: 10px solid rgba(255, 255, 255, 0.63);
  border-radius: 48% 48% 32px 32px;
  background: var(--sky);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero__visual:hover .hero__photo {
  transform: scale(1.025);
}

.hero__note {
  position: absolute;
  right: -22px;
  bottom: 54px;
  max-width: 185px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 19px 19px 5px 19px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: var(--shadow-small);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.25;
  transform: rotate(-3deg);
}

.hero__star {
  position: absolute;
  top: 12%;
  left: -25px;
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--berry);
  background: var(--apricot);
  box-shadow: var(--shadow-small);
  font-size: 29px;
  transform: rotate(-8deg);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: max(24px, calc((100vw - 1320px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11vw;
  align-items: start;
}

.intro__copy {
  padding-top: 30px;
}

.intro__copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.feature {
  min-height: 124px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.feature strong {
  display: block;
  margin-bottom: 12px;
  color: var(--berry);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.feature span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.portfolio {
  background: var(--paper-deep);
}

.portfolio::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34vw;
  height: 34vw;
  border-radius: 0 0 0 100%;
  background: rgba(245, 184, 170, 0.14);
  content: "";
}

.portfolio__head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.portfolio__head .section-title {
  max-width: 720px;
}

.portfolio__head-side {
  max-width: 350px;
  padding-bottom: 4px;
}

.portfolio__head-side p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 72px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--sky);
  box-shadow: var(--shadow-small);
  cursor: zoom-in;
}

.gallery-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 6;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 8;
}

.gallery-card:nth-child(3) {
  grid-column: span 4;
  grid-row: span 6;
}

.gallery-card:nth-child(4) {
  grid-column: span 3;
  grid-row: span 6;
}

.gallery-card:nth-child(5) {
  grid-column: span 5;
  grid-row: span 7;
}

.gallery-card:nth-child(6) {
  grid-column: span 7;
  grid-row: span 7;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.gallery-card:nth-child(1) img,
.gallery-card:nth-child(3) img {
  object-position: center 58%;
}

.gallery-card__caption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 10px 24px rgba(48, 42, 48, 0.08);
  text-align: left;
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 250ms ease;
}

.gallery-card__caption strong,
.gallery-card__caption small {
  display: block;
}

.gallery-card__caption strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.gallery-card__caption small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-card__caption > span:last-child {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
  font-size: 17px;
}

.gallery-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.gallery-card:hover .gallery-card__caption {
  transform: translateY(-4px);
}

.gallery-wall {
  overflow: clip;
  background:
    radial-gradient(circle at 8% 10%, rgba(185, 220, 233, 0.28), transparent 27%),
    radial-gradient(circle at 92% 85%, rgba(245, 184, 170, 0.2), transparent 24%),
    var(--paper-deep);
}

.gallery-wall__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.gallery-wall__head .section-copy {
  margin: 0;
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.masonry-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--sky);
  box-shadow: var(--shadow-small);
  cursor: zoom-in;
}

.masonry-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.masonry-card__caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.91);
  box-shadow: 0 10px 24px rgba(48, 42, 48, 0.08);
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 250ms ease;
}

.masonry-card__caption strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.masonry-card__caption small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.35;
}

.masonry-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.masonry-card:hover .masonry-card__caption {
  transform: translateY(-4px);
}

.gallery-wall__empty {
  margin: 0;
  padding: 50px 24px;
  border: 1px dashed rgba(161, 61, 103, 0.28);
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
  background: rgba(255, 250, 243, 0.7);
  text-align: center;
}

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

.prices__head {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.prices__head .section-copy {
  margin: 0;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.product-card__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.72), transparent 46%),
    var(--sky);
}

.product-card:nth-child(2n) .product-card__art {
  background:
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.72), transparent 46%),
    var(--peach);
}

.product-card:nth-child(3n) .product-card__art {
  background:
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.72), transparent 46%),
    var(--mint);
}

.product-card__art::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 44px;
  aspect-ratio: 1;
  border: 1px dashed rgba(36, 52, 79, 0.25);
  border-radius: 50%;
  content: "";
}

.product-card__art img {
  position: relative;
  z-index: 1;
  max-width: 64%;
  max-height: 225px;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(77, 63, 77, 0.11));
  transition: transform 300ms ease;
}

.product-card:nth-child(n + 5) .product-card__art img {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 260px;
  object-fit: cover;
  filter: none;
}

.product-card:hover .product-card__art img {
  transform: rotate(-1deg) scale(1.025);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.product-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.product-card__body > p {
  margin: 10px 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.product-card__prices {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.product-card__prices li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  border-top: 1px dashed rgba(36, 52, 79, 0.2);
  color: var(--ink-soft);
  font-size: 13px;
}

.product-card__prices strong {
  flex: 0 0 auto;
  color: var(--berry-dark);
  font-size: 17px;
}

.price-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 17px 20px;
  border: 1px dashed rgba(161, 61, 103, 0.32);
  border-radius: 18px;
  color: var(--ink-soft);
  background: rgba(245, 184, 170, 0.1);
  font-size: 13px;
  text-align: left;
}

.price-note span:first-child {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
}

.addons {
  background: var(--ink);
  color: var(--white);
}

.addons::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

.addons__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 84px;
  align-items: center;
}

.addons .eyebrow {
  color: var(--peach);
}

.addons .section-copy {
  color: rgba(255, 255, 255, 0.66);
}

.addons__visual {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.addons__visual img {
  width: 100%;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
}

.addon-groups {
  display: grid;
  gap: 12px;
}

.addon-group {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.addon-group h3 {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--peach);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
}

.addon-group ul {
  margin: 0;
  padding: 7px 20px 12px;
  list-style: none;
}

.addon-group li {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.addon-group li + li {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.addon-group strong {
  color: var(--white);
  font-weight: 700;
}

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

.process__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.process__scribble {
  color: var(--berry);
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  transform: rotate(-4deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px 25px 20px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step__number {
  display: inline-flex;
  margin-bottom: 53px;
  color: var(--berry);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 23px;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 0 0 0 7px var(--paper);
  content: "";
}

.shipping {
  padding-top: 55px;
  background: var(--paper);
}

.shipping__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 60px;
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(192, 224, 236, 0.97), rgba(219, 235, 235, 0.86)),
    url("images/clouds-bg.jpg") center / cover;
  box-shadow: var(--shadow-small);
}

.shipping__card::after {
  position: absolute;
  top: 35px;
  right: 44%;
  color: rgba(161, 61, 103, 0.5);
  content: "✦";
  font-size: 34px;
  transform: rotate(9deg);
}

.shipping__options {
  display: grid;
  gap: 13px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 21px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 10px 25px rgba(51, 73, 83, 0.07);
}

.shipping-option strong,
.shipping-option span {
  display: block;
}

.shipping-option strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.shipping-option span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
}

.shipping-option b {
  flex: 0 0 auto;
  color: var(--berry-dark);
  font-size: 22px;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr;
  gap: 10vw;
  align-items: start;
}

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

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

.faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--berry);
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary::after {
  color: var(--white);
  background: var(--berry);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 660px;
  margin: -7px 0 24px;
  padding-right: 45px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  padding-top: 40px;
  background: var(--paper);
}

.contact__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  gap: 80px;
  align-items: end;
  overflow: hidden;
  padding: 80px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--berry);
  box-shadow: var(--shadow);
}

.contact__card::before {
  position: absolute;
  top: -105px;
  right: -70px;
  width: 350px;
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact__card::after {
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 184, 170, 0.2);
  content: "";
}

.contact .eyebrow {
  color: var(--peach);
}

.contact__card .section-title {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.contact__card .section-copy {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.contact__action {
  position: relative;
  z-index: 1;
}

.contact__action .button {
  width: 100%;
  min-height: 64px;
  color: var(--berry-dark);
  background: var(--paper);
  box-shadow: inset 0 -3px 0 rgba(94, 40, 64, 0.12);
}

.contact__action .button:hover {
  background: var(--white);
}

.contact__action p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 38px 0 44px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer__note {
  color: var(--ink-soft);
  font-size: 12px;
}

.footer__brand {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}

.footer__links a {
  border-bottom: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, border 160ms ease;
}

.footer__links a:hover {
  border-color: var(--berry);
  color: var(--berry);
}

.lightbox {
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(14, 18, 30, 0.4);
}

.lightbox::backdrop {
  background: rgba(20, 29, 45, 0.72);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 28px 28px 0 0;
  object-fit: contain;
  background: var(--sky);
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 22px 20px;
}

.lightbox figcaption strong {
  font-family: var(--display);
  font-size: 20px;
}

.lightbox figcaption span {
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -13px;
  right: -13px;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
  box-shadow: var(--shadow-small);
  font-size: 25px;
  cursor: pointer;
}

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

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

.noscript {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 18px;
  border-radius: 16px;
  color: var(--white);
  background: var(--berry-dark);
}

.error-state {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 30px;
  text-align: center;
}

.error-state h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 42px;
}

.error-state p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 36px, 960px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .language-picker {
    margin-right: 7px;
    margin-left: 0;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    place-content: center;
    width: 48px;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 28px 34px;
    color: var(--ink);
    background: rgba(255, 250, 243, 0.98);
    backdrop-filter: blur(14px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1.15;
  }

  .mobile-menu > a {
    margin-top: 28px;
    color: var(--berry);
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.82fr;
    gap: 36px;
  }

  .hero__note {
    right: -5px;
  }

  .intro__grid,
  .faq__grid {
    gap: 7vw;
  }

  .prices__head {
    gap: 40px;
  }

  .gallery-wall__head {
    gap: 40px;
  }

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

  .addons__grid {
    gap: 45px;
  }

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

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

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

  .process-step:nth-child(n + 3)::before {
    top: -5px;
  }

  .shipping__card,
  .contact__card {
    padding: 55px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 28px);
    --radius-xl: 30px;
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 94px;
  }

  .site-header {
    top: 10px;
    min-height: 64px;
    padding: 8px 8px 8px 12px;
    border-radius: 20px;
  }

  .brand__mark {
    width: 40px;
    border-radius: 13px 13px 13px 6px;
    font-size: 15px;
  }

  .brand__copy strong {
    font-size: 17px;
  }

  .brand__copy small {
    display: none;
  }

  .menu-toggle {
    width: 45px;
  }

  .section {
    padding: 82px 0;
  }

  .display-title {
    font-size: clamp(46px, 13vw, 66px);
  }

  .section-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero {
    padding: 105px 14px 70px;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.7) 58%, rgba(255, 250, 243, 0.15) 100%),
      url("images/clouds-bg.jpg") center / cover;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__copy {
    padding: 22px 5px 18px;
  }

  .hero__body {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .hero__visual {
    justify-self: stretch;
    width: 100%;
    padding: 0 3px;
  }

  .hero__photo-wrap {
    aspect-ratio: 1 / 1.05;
    border-width: 7px;
    border-radius: 46% 46% 25px 25px;
  }

  .hero__note {
    right: -1px;
    bottom: 24px;
    max-width: 155px;
    padding: 14px 15px;
    font-size: 14px;
  }

  .hero__star {
    top: 10%;
    left: -3px;
    width: 59px;
    font-size: 23px;
  }

  .hero__scroll {
    display: none;
  }

  .intro__grid,
  .prices__head,
  .addons__grid,
  .faq__grid,
  .shipping__card,
  .contact__card {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 30px;
  }

  .intro__copy {
    padding-top: 0;
  }

  .intro__copy p {
    font-size: 16px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    min-height: 85px;
  }

  .feature strong {
    margin: 0;
  }

  .portfolio__head,
  .gallery-wall__head,
  .process__head {
    display: block;
  }

  .portfolio__head-side {
    margin-top: 25px;
  }

  .gallery-wall__head .section-copy {
    margin-top: 25px;
  }

  .masonry-grid {
    columns: 2 220px;
    column-gap: 14px;
  }

  .masonry-card {
    margin-bottom: 14px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-card,
  .gallery-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 0.84;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(3) {
    aspect-ratio: 1.12;
  }

  .gallery-card__caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 13px 14px;
  }

  .masonry-card__caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 13px 14px;
  }

  .prices__head {
    gap: 24px;
  }

  .prices__head .section-copy {
    margin-top: 0;
  }

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

  .product-card {
    min-height: 490px;
  }

  .addons__grid {
    gap: 35px;
  }

  .addons__visual {
    margin-top: 30px;
    padding: 18px;
  }

  .process__scribble {
    margin-top: 25px;
  }

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

  .process-step,
  .process-step:nth-child(n) {
    min-height: auto;
    padding: 25px 10px 30px 23px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step__number {
    margin-bottom: 24px;
  }

  .shipping {
    padding-top: 20px;
  }

  .shipping__card,
  .contact__card {
    gap: 38px;
    padding: 35px 24px;
  }

  .shipping__card::after {
    display: none;
  }

  .shipping-option {
    padding: 19px;
  }

  .contact {
    padding-top: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer__brand {
    grid-row: 1;
  }

  .footer__links {
    justify-content: center;
  }

  .lightbox figcaption {
    display: block;
  }

  .lightbox figcaption span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
}

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

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