@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Marck Script";
  src: url("assets/fonts/marck-script.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink: #1c1614;
  --muted: #655b57;
  --pink: #fcf2f8;
  --rose: #f4836d;
  --line: #302522;
  --yellow: #fff0af;
  --max: 1210px;
  --gutter: clamp(22px, 5.6vw, 78px);
  --radius: 30px;
  --body: clamp(17px, 1.82vw, 25px);
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 34% 7% at 100% 2%, #fac4e2 0, transparent 100%),
    radial-gradient(ellipse 35% 9% at 0 17%, #fff8dc 0, transparent 100%),
    radial-gradient(ellipse 24% 10% at 100% 27%, #ffedf1 0, transparent 100%),
    radial-gradient(ellipse 40% 11% at 0 41%, #fff4fa 0, transparent 100%),
    radial-gradient(ellipse 27% 9% at 100% 48%, #fff9e1 0, transparent 100%),
    radial-gradient(ellipse 36% 11% at 88% 69%, #fff0cf 0, transparent 100%),
    radial-gradient(ellipse 35% 13% at 100% 92%, #fbe8f6 0, transparent 100%);
  font-size: var(--body);
  line-height: 1.34;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
}
a {
  color: inherit;
}
a:not(.button):hover {
  text-decoration-thickness: 2px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible + span,
[tabindex]:focus-visible {
  outline: 3px solid #91477b;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: inline-block;
  flex-shrink: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
p + p {
  margin-top: 1.05em;
}
h1,
h2,
h3 {
  line-height: 1.15;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
address {
  font-style: normal;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 15px;
  padding: 12px 18px;
  z-index: 100;
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 66px;
  position: relative;
  z-index: 10;
  min-height: 194px;
}
.brand {
  text-decoration: none;
  color: #050505;
  display: inline-flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 37px;
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -1.7px;
  white-space: nowrap;
}
.brand > span {
  font-weight: 800;
}
.brand strong {
  position: relative;
  font-size: 1.47em;
  letter-spacing: -2.5px;
}
.brand img {
  position: absolute;
  width: 34px;
  height: auto;
  right: -14px;
  top: 4px;
  transform: rotate(-4deg);
}
.site-menu {
  position: relative;
  margin-top: -2px;
}
.site-menu summary {
  list-style: none;
  display: grid;
  gap: 9px;
  width: 64px;
  padding: 6px;
  cursor: pointer;
}
.site-menu summary::-webkit-details-marker {
  display: none;
}
.site-menu summary span {
  height: 3px;
  width: 100%;
  background: #171313;
  border-radius: 9px;
  transition: transform 0.18s;
}
.site-menu[open] summary span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.site-menu[open] summary span:nth-child(2) {
  opacity: 0;
}
.site-menu[open] summary span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
.site-menu nav {
  position: absolute;
  right: 0;
  top: 62px;
  width: min(350px, calc(100vw - 44px));
  padding: 22px;
  border: 1px solid #e6d6dd;
  border-radius: 24px;
  background: #fffcfd;
  box-shadow: 0 16px 65px #38202c1c;
  display: grid;
  font-size: 17px;
  gap: 1px;
}
.site-menu nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
}
.site-menu nav a:hover {
  background: #fcecf4;
}
.site-menu .menu-phone {
  border-top: 1px solid #e9dbe2;
  border-radius: 0;
  margin-top: 9px;
  padding-top: 17px;
  font-weight: 700;
}
.hero-wrap {
  position: relative;
}
.hero {
  position: relative;
  min-height: 620px;
  padding-top: 44px;
  padding-bottom: 65px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 65%;
}
.gradient-title {
  font-size: clamp(32px, 3.22vw, 44px);
  font-weight: 800;
  letter-spacing: -0.75px;
  display: flex;
  position: relative;
  gap: 9px;
  margin-bottom: 24px;
}
.gradient-title > span,
.section-title > span,
.gradient-text,
.stats dt,
.section-cta > p,
.price-card h3,
.site-footer h3 {
  background: linear-gradient(105deg, #0a0807 1%, #5e3b2f 42%, #f3846b 100%);
  color: #743c2b;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spark {
  color: #050403;
  fill: currentColor;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex: 0 0 1em;
}
.gradient-title .spark {
  position: absolute;
  left: -0.9em;
  top: 0.1em;
  width: 0.8em;
  height: 0.8em;
}
.hero-lead {
  font-size: clamp(22px, 2.12vw, 29px);
  line-height: 1.22;
  max-width: 640px;
}
.hero-extra {
  font-size: clamp(20px, 2.05vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 26px;
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-actions {
  margin-top: 36px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #ffffffd9;
  color: var(--ink);
  border: 1.7px solid var(--ink);
  border-radius: 999px;
  min-height: 50px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  gap: 12px;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #fbe4f0;
  box-shadow: 0 5px 24px #ddc3d23d;
  transform: translateY(-2px);
}
.button-blush {
  background: #fdf3f9;
  box-shadow: 0 0 46px #efdde438;
}
.hero-actions .button {
  min-width: 245px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  text-decoration: none;
  font-size: 25px;
  white-space: nowrap;
}
.location-icon {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: #101010;
  stroke-width: 1.7;
}
.hero-visual {
  position: absolute;
  top: -65px;
  left: 67%;
  right: calc(-1 * var(--gutter));
  height: 640px;
}
.hero-photo {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 44%;
  border-radius: 52px 0 0 52px;
}
.hero-badge {
  position: absolute;
  left: -100px;
  bottom: 43px;
  background: #fff4f9d9;
  border: 2px solid var(--line);
  border-radius: 29px;
  padding: 16px 32px;
  font-size: 25px;
  line-height: 1.2;
  min-width: 280px;
  backdrop-filter: blur(6px);
  color: #4d4444;
}
.hero-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.hero-badge span {
  display: block;
}
.section {
  padding-block: 66px;
}
.section-title {
  font-size: clamp(25px, 2.42vw, 33px);
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 58px;
  letter-spacing: -0.4px;
  text-align: center;
}
.section-title .spark {
  margin-top: 0.03em;
}
.intentions {
  padding-top: 66px;
}
.intentions .section-title {
  font-size: clamp(24px, 2.3vw, 31px);
  white-space: normal;
}
.intentions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 36px;
}
.intention {
  display: flex;
  gap: 8px;
  font-size: 20px;
}
.line-icon {
  width: 39px;
  height: 39px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}
.intention h3 {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.16;
}
.intention p {
  line-height: 1.25;
  margin-top: 3px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 62px 0 42px;
  gap: 24px;
}
.stats dt {
  font-weight: 800;
  font-size: 30px;
}
.stats dd {
  font-size: 26px;
  margin: 0;
  line-height: 1.25;
}
.section-cta {
  text-align: center;
}
.section-cta > p {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
}
.section-intro {
  margin-top: -28px;
  margin-bottom: 28px;
  font-size: 26px;
}
.design-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30%;
  grid-template-rows: auto 1fr auto auto;
  column-gap: 8%;
  min-height: 450px;
}
.design-tabs {
  grid-area: 1/1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
  align-content: flex-start;
}
.design-tabs button {
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: #ffffffc9;
  padding: 11px 20px;
  min-height: 56px;
  font-size: 23px;
  line-height: 1.15;
  transition: background 0.15s;
}
.design-tabs button[aria-selected="true"] {
  background: #fceef6;
  box-shadow: 0 3px 24px #f6e0ed40;
}
.design-tabs button:hover {
  background: #fff2d9;
}
.design-panel {
  display: contents;
}
.design-panel > p {
  grid-area: 2/1;
  font-size: 25px;
  align-self: center;
  padding-bottom: 18px;
  min-height: 120px;
}
.design-panel > img {
  grid-column: 2;
  grid-row: 1/5;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  align-self: center;
}
.design-note {
  grid-area: 3/1;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.design-actions {
  grid-area: 4/1;
  gap: 18px;
  flex-wrap: nowrap;
}
.design-actions .button {
  padding-inline: 20px;
  font-size: 15px;
  white-space: nowrap;
}
.design-panel:focus-visible > p {
  outline: 3px solid #91477b;
  outline-offset: 5px;
}
.pricing {
  position: relative;
  isolation: isolate;
  padding-top: 70px;
  padding-bottom: 78px;
}
.pricing .container {
  position: relative;
  z-index: 1;
}
.silver-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.pricing-intro h3 {
  text-transform: uppercase;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 35px;
}
.pricing-intro > p {
  font-size: 24px;
}
.handwritten {
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-style: italic;
  line-height: 1.5;
}
.pricing-intro .handwritten {
  font-size: 27px;
  margin-top: 58px;
}
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fdf3f9ed;
  padding: 34px 16px 38px;
  box-shadow: 0 15px 40px #e3cbd819;
  height: 100%;
  min-height: 424px;
}
.price-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price {
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
  margin-top: 22px;
  white-space: nowrap;
}
.price span {
  font-size: 19px;
}
.price small {
  font-size: 21px;
}
.format-tag {
  border: 1px solid #322225;
  background: #fce3ef;
  padding: 9px 17px;
  font-size: 14px;
  margin-top: 23px;
}
.price-card ul {
  list-style: none;
  font-size: 17px;
  line-height: 1.28;
  margin: 24px 0 26px;
}
.price-card .button {
  margin-top: auto;
  font-size: 15px;
  font-weight: 400;
  padding: 11px 15px;
  min-height: 49px;
  width: 100%;
  border-width: 1px;
  white-space: nowrap;
}
.arrow {
  width: 30px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.gold-colors {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 0;
  margin: 92px 0 52px;
  padding: 0;
  min-width: 0;
}
.gold-colors legend {
  float: left;
  margin-right: 5px;
  font-size: 27px;
  font-weight: 800;
  text-transform: uppercase;
}
.gold-colors label {
  position: relative;
  cursor: pointer;
}
.gold-colors input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.gold-colors label span {
  display: block;
  border: 2px solid var(--line);
  border-radius: 99px;
  padding: 9px 24px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  background: #fff;
}
.gold-colors .color-rose span {
  background: #fff3f8;
}
.gold-colors .color-yellow span {
  background: #fff0af;
}
.gold-colors input:checked + span {
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 6px #946348;
  transform: translateY(-1px);
}
.gold-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.gold-grid .price-card h3 {
  min-height: 70px;
}
.gold-grid .price-card {
  min-height: 435px;
  padding-inline: 18px;
}
.gold-grid .price {
  font-size: 26px;
  white-space: normal;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.gold-grid .price span {
  font-size: 16px;
}
.gold-grid .price-card .button {
  font-size: 13px;
  gap: 8px;
  padding-inline: 10px;
}
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 330px;
  opacity: 0.65;
}
.decor-silver {
  top: 10%;
  right: -70px;
  transform: rotate(-18deg);
}
.decor-gold {
  bottom: 0;
  left: -165px;
  width: 400px;
  transform: rotate(15deg);
}
.groups {
  padding-top: 72px;
}
.group-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.group-copy {
  font-size: 25px;
}
.group-copy .button {
  margin-top: 34px;
  min-width: 250px;
}
.group-photos {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.group-photos img {
  width: 100%;
  border-radius: 29px;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.creative-note {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  margin-top: 65px;
}
.creative-note span {
  display: block;
  text-transform: none;
  text-align: right;
  font-weight: 400;
  font-family: "Segoe Print", cursive;
  font-style: italic;
  font-size: 30px;
  max-width: 85%;
  line-height: 1.2;
  margin-bottom: 15px;
}
.creative-note s {
  text-decoration-color: #ff606c;
  text-decoration-thickness: 5px;
  text-decoration-style: solid;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}
.coworking h3 {
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
.coworking p {
  font-size: 23px;
}
.coworking-book {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 25px;
}
.rounded-photo {
  border-radius: var(--radius);
  object-fit: cover;
}
.coworking-book > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-position: 50% 52%;
}
.coworking-book .button {
  font-size: 13px;
  padding-inline: 16px;
  white-space: nowrap;
  min-height: 44px;
  margin-top: 18px;
}
.coworking .coworking-price {
  font-size: 29px;
  margin-top: 14px;
  white-space: nowrap;
}
.coworking-price span {
  font-size: 22px;
}
.tools-photo {
  width: 100%;
  aspect-ratio: 1.6;
  object-position: center 58%;
  margin-top: 24px;
}
.coworking .caption-bold {
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  font-size: 22px;
  margin-top: 20px;
}
.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 950px;
  margin: auto;
  gap: 58px 92px;
}
.step-card {
  padding: 28px 32px 30px;
  min-height: 248px;
  border-radius: 30px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #493225;
}
.step-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.step-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #1f120970, #21160d44);
  z-index: -1;
}
.step-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}
.step-heading > span {
  width: 56px;
  height: 56px;
  border: 2px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  flex-shrink: 0;
}
.step-heading h3 {
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}
.step-card > p {
  font-size: 17px;
  line-height: 1.35;
  margin-top: auto;
}
.certificate-layout {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 26px 75px;
}
.gift-intro {
  grid-column: 1;
  font-size: 32px;
  align-self: start;
}
.gift-copy {
  grid-column: 1;
  font-size: 24px;
}
.gift-copy p + p {
  margin-top: 0;
}
.check-list {
  list-style: none;
  margin-top: 28px;
}
.check-list li {
  position: relative;
  padding-left: 33px;
  margin-top: 5px;
  line-height: 1.3;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.gift-visual {
  grid-column: 2;
  grid-row: 1/3;
  text-align: center;
}
.gift-visual > img {
  width: 100%;
  aspect-ratio: 4/5;
}
.gift-visual figcaption {
  margin-top: 35px;
}
.gift-visual .button {
  font-size: 14px;
  padding-inline: 18px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 265px;
  gap: 66px;
  align-items: start;
  font-size: 22px;
}
.about-layout p + p {
  margin-top: 25px;
}
.studio-photo {
  height: 100%;
  width: 100%;
  max-height: 530px;
  object-fit: cover;
}
.about-facts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
  font-size: 24px;
  margin-top: 54px;
}
.about-facts li {
  padding-left: 34px;
}
.why {
  margin-top: 34px;
  background: radial-gradient(ellipse at 5% 55%, #fbedf8 0, transparent 66%);
  padding-block: 25px;
}
.why-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 70px;
  align-items: center;
}
.why .section-title {
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 72px;
  font-size: 30px;
}
.why p {
  font-size: 26px;
}
.why .button {
  margin-top: 48px;
}
.result-photo {
  width: calc(100% + var(--gutter));
  max-width: none;
  height: 735px;
  border-radius: 50px 0 0 50px;
  object-position: 50% 58%;
}
.reviews {
  padding-top: 90px;
}
.review-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px;
  align-items: start;
}
.review-image {
  border: 0;
  background: none;
  padding: 0;
  display: block;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.review-image img {
  width: 100%;
  height: auto;
}
.reviews figcaption {
  font-size: 15px;
  margin-top: 14px;
  color: var(--muted);
}
.reviews summary {
  cursor: pointer;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.reviews details p {
  padding-top: 12px;
  margin: 0;
  line-height: 1.5;
}
.faq {
  padding-top: 65px;
}
.faq-list {
  max-width: 1010px;
  margin-inline: auto;
}
.faq-list details {
  border-bottom: 1px solid #eadfe43b;
}
.faq-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-size: 24px;
  text-transform: uppercase;
  padding: 20px 10px;
  cursor: pointer;
  line-height: 1.35;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.faq-list summary > span:before,
.faq-list summary > span:after {
  content: "";
  position: absolute;
  background: var(--ink);
  height: 2px;
  width: 18px;
  top: 9px;
  left: 1px;
  transition: transform 0.18s;
}
.faq-list summary > span:after {
  transform: rotate(90deg);
}
.faq-list details[open] summary > span:after {
  transform: rotate(0);
}
.faq-list details[open] summary {
  font-weight: 700;
}
.faq-list details > div {
  font-size: 19px;
  padding: 0 50px 28px 10px;
  line-height: 1.6;
  color: #4d403b;
}
.site-footer {
  padding-top: 75px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.15fr 1.18fr 0.9fr 1fr;
  gap: 45px;
  font-size: 16px;
}
.site-footer h3 {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.22;
  margin-bottom: 10px;
}
.site-footer h3:not(:first-child) {
  margin-top: 30px;
}
.footer-grid a:not(.brand) {
  text-decoration: none;
}
.footer-grid a:not(.brand):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.brand-pair {
  display: flex;
  gap: 21px;
  align-items: center;
  margin-bottom: 25px;
}
.brand-pair .brand {
  font-size: 28px;
}
.brand-pair .brand img {
  width: 25px;
  right: -9px;
}
.brand-cross {
  font-size: 50px;
  line-height: 1;
  font-weight: 200;
}
.jewelry-brand {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  line-height: 1.35;
}
.footer-brand > p {
  font-size: 24px;
  max-width: 300px;
}
.footer-brand > h3 {
  margin-top: 35px;
}
.footer-grid .text-link {
  display: inline-block;
  font-size: 13px;
  margin-top: 9px;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 17px;
}
.social-links a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-block: 5px;
}
.footer-nav {
  display: grid;
  gap: 6px;
}
.footer-grid p {
  line-height: 1.55;
}
.footer-bottom {
  margin-top: 75px;
  border-top: 1px solid var(--ink);
  font-size: 14px;
  padding: 25px 0 45px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
dialog {
  color: var(--ink);
  border: 1px solid #d7c5cc;
  border-radius: 28px;
  background: #fffbfd;
  padding: 44px;
  width: calc(100% - 40px);
  max-width: 550px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
  box-shadow: 0 25px 100px #2410174d;
  font-size: 18px;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #20151e88;
  backdrop-filter: blur(5px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 35px;
  font-weight: 300;
}
.dialog-close:hover {
  background: #f6e9f0;
}
dialog h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 12px 0 18px;
  padding-right: 15px;
}
dialog p {
  line-height: 1.5;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
  margin-top: 4px;
}
.booking-selection {
  border-block: 1px solid #e7d8df;
  padding: 20px 0;
  margin: 25px 0;
}
.booking-selection > span {
  font-size: 13px;
  color: var(--muted);
}
#booking-choice {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
#booking-design {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.booking-dialog > .button {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  padding-inline: 12px;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #523733;
}
.booking-footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 25px !important;
  text-align: center;
}
.catalog-dialog {
  max-width: 1000px;
}
.catalog-dialog > p {
  max-width: 700px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 18px;
}
.catalog-card h3 {
  font-size: 17px;
}
.catalog-card p {
  font-size: 14px;
}
.catalog-card .button {
  font-size: 11px;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 8px;
}
.review-dialog {
  max-width: 620px;
  padding: 60px 24px 24px;
  background: white;
}
.review-dialog > img {
  width: 100%;
  border-radius: 15px;
}
.noscript-note {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  background: var(--pink);
}
.legal-page {
  background: radial-gradient(ellipse at 100% 0, #fde6f1, transparent 50%);
  font-size: 18px;
}
.legal-header {
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.legal-header .brand {
  font-size: 26px;
}
.legal-main {
  max-width: 880px;
  padding: 30px 0 80px;
}
.legal-main h1 {
  font-size: 38px;
  margin-bottom: 25px;
}
.legal-nav {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
  margin-bottom: 55px;
  font-size: 16px;
}
.legal-main section {
  padding-block: 25px;
  border-bottom: 1px solid #eadce3;
  scroll-margin-top: 24px;
}
.legal-main h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.legal-main h3 {
  font-size: 20px;
  margin-block: 24px 12px;
}
.legal-main p {
  font-size: 17px;
  line-height: 1.65;
}
.legal-main a {
  overflow-wrap: anywhere;
}
.legal-document {
  white-space: pre-line;
  line-height: 1.7;
  font-size: 16px;
}
.legal-main .document-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
}
@media (min-width: 1600px) {
  .hero-visual {
    right: -110px;
  }
  .result-photo {
    width: calc(100% + 100px);
  }
}
@media (max-width: 1150px) {
  :root {
    --gutter: 42px;
  }
  .site-header {
    min-height: 175px;
    padding-top: 45px;
  }
  .brand {
    font-size: 30px;
  }
  .hero {
    min-height: 540px;
    padding-top: 25px;
  }
  .hero-visual {
    top: -65px;
    height: 550px;
    left: 68%;
  }
  .hero-copy {
    width: 66%;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    min-width: 190px;
    font-size: 14px;
    padding-inline: 20px;
  }
  .hero-extra {
    max-width: 550px;
  }
  .hero-badge {
    min-width: 210px;
    padding: 14px 22px;
    left: -55px;
    font-size: 20px;
  }
  .hero-location {
    font-size: 21px;
    gap: 12px;
  }
  .hero-photo {
    border-radius: 40px 0 0 40px;
  }
  .section {
    padding-block: 55px;
  }
  .section-title {
    margin-bottom: 42px;
  }
  .intentions-grid {
    gap: 35px 20px;
  }
  .intention {
    font-size: 17px;
  }
  .intention h3 {
    font-size: 16px;
  }
  .line-icon {
    width: 32px;
    height: 32px;
  }
  .stats dd {
    font-size: 22px;
  }
  .design-tabs {
    gap: 13px;
  }
  .design-tabs button {
    font-size: 19px;
    min-height: 48px;
    padding-inline: 18px;
  }
  .design-panel > p {
    font-size: 22px;
  }
  .design-note {
    font-size: 16px;
  }
  .design-actions {
    flex-wrap: wrap;
  }
  .design-actions .button {
    font-size: 13px;
  }
  .silver-layout {
    gap: 23px;
    grid-template-columns: 1.35fr 1fr 1fr;
  }
  .pricing-intro h3 {
    font-size: 23px;
  }
  .pricing-intro > p {
    font-size: 21px;
  }
  .price-card {
    padding-inline: 14px;
  }
  .price-card h3 {
    font-size: 17px;
  }
  .price {
    font-size: 24px;
  }
  .price span {
    font-size: 15px;
  }
  .price-card ul {
    font-size: 16px;
  }
  .price-card .button {
    font-size: 13px;
  }
  .gold-grid {
    gap: 16px;
  }
  .gold-grid .price-card {
    padding-inline: 11px;
  }
  .gold-grid .price-card .button {
    font-size: 11px;
    gap: 5px;
  }
  .gold-grid .arrow {
    width: 22px;
  }
  .group-layout {
    gap: 40px;
  }
  .group-copy {
    font-size: 22px;
  }
  .group-photos {
    gap: 24px;
  }
  .two-columns {
    gap: 40px;
  }
  .coworking p,
  .coworking h3 {
    font-size: 20px;
  }
  .coworking-book {
    gap: 15px;
  }
  .coworking-book .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .steps-grid {
    gap: 30px 45px;
  }
  .certificate-layout {
    gap: 25px 45px;
  }
  .gift-copy {
    font-size: 21px;
  }
  .about-layout {
    font-size: 20px;
    gap: 35px;
    grid-template-columns: 1fr 230px;
  }
  .about-facts {
    font-size: 20px;
  }
  .why-layout {
    gap: 40px;
  }
  .why .section-title {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .why p {
    font-size: 22px;
  }
  .result-photo {
    height: 650px;
  }
  .reviews-grid {
    gap: 30px;
  }
  .faq-list summary {
    font-size: 20px;
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .brand-pair {
    margin: 0;
  }
  .footer-brand > p {
    font-size: 18px;
    width: 220px;
  }
  .footer-brand > h3 {
    display: none;
  }
  .social-links {
    margin-left: auto;
  }
  .footer-grid {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 26px;
    --body: 17px;
    --radius: 24px;
  }
  html {
    scroll-padding-top: 15px;
  }
  body {
    background:
      radial-gradient(ellipse 90% 5% at 0 4%, #fff8e1, transparent),
      radial-gradient(ellipse 90% 6% at 100% 10%, #ffeff6, transparent),
      radial-gradient(ellipse 90% 6% at 0 20%, #fff9e5, transparent),
      radial-gradient(ellipse 90% 10% at 100% 35%, #fff3f8, transparent),
      radial-gradient(ellipse 100% 6% at 100% 58%, #fff8df, transparent),
      radial-gradient(ellipse 90% 7% at 0 78%, #fcf0fa, transparent),
      radial-gradient(ellipse 90% 6% at 100% 95%, #fff0f7, transparent);
  }
  .site-header {
    padding-top: 30px;
    min-height: 102px;
    align-items: flex-start;
  }
  .brand {
    font-size: 24px;
    letter-spacing: -1.1px;
  }
  .brand strong {
    letter-spacing: -1.5px;
  }
  .brand img {
    width: 25px;
    right: -11px;
  }
  .site-menu {
    margin-top: 12px;
  }
  .site-menu summary {
    width: 40px;
    gap: 6px;
    padding: 3px;
  }
  .site-menu summary span {
    height: 2px;
  }
  .site-menu[open] summary span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-menu[open] summary span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-menu nav {
    top: 43px;
    font-size: 16px;
  }
  .hero {
    padding-top: 16px;
    padding-bottom: 20px;
    min-height: 345px;
  }
  .hero-copy {
    width: 65%;
    position: static;
  }
  .gradient-title {
    font-size: clamp(23px, 4.75vw, 33px);
    letter-spacing: -0.4px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }
  .gradient-title .spark {
    left: -0.82em;
    width: 0.65em;
    height: 0.65em;
    top: 0.2em;
  }
  .hero-lead {
    font-size: clamp(15px, 2.9vw, 20px);
    line-height: 1.3;
    max-width: 95%;
    position: relative;
    z-index: 2;
  }
  .desktop-break {
    display: none;
  }
  .hero-extra {
    font-size: clamp(15px, 3.1vw, 21px);
    margin-top: 18px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
    max-width: 92%;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-width: 85%;
    position: relative;
    z-index: 2;
  }
  .hero-actions .button {
    min-width: 0;
    width: 100%;
    min-height: 37px;
    padding: 8px 6px;
    font-size: 11px;
    border-width: 1.5px;
  }
  .hero-visual {
    left: 69%;
    right: calc(-1 * var(--gutter));
    height: 330px;
    top: 5px;
    z-index: 1;
  }
  .hero-photo {
    border-radius: 55px 0 0 55px;
    object-position: 49% center;
  }
  .hero-badge {
    bottom: 38px;
    left: -42px;
    min-width: 0;
    width: 142px;
    border-radius: 19px;
    padding: 9px 13px;
    font-size: 13px;
    border-width: 1.5px;
  }
  .hero-badge strong {
    font-size: 17px;
  }
  .hero-location {
    font-size: 15px;
    gap: 8px;
    margin-top: 25px;
    width: calc((100% / 0.65));
    position: relative;
    z-index: 2;
    white-space: normal;
    max-width: calc(100vw - 42px);
  }
  .location-icon {
    width: 35px;
    height: 35px;
  }
  .section {
    padding-block: 43px;
  }
  .section-title,
  .intentions .section-title {
    font-size: 21px;
    line-height: 1.23;
    gap: 4px;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
  }
  .section-title .spark {
    width: 0.85em;
    flex-basis: 0.85em;
    height: 0.85em;
    margin-top: 0.15em;
  }
  .intentions {
    padding-top: 52px;
  }
  .intentions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 520px;
    margin: auto;
  }
  .intention {
    font-size: 17px;
    gap: 8px;
  }
  .intention h3 {
    font-size: 17px;
    line-height: 1.2;
  }
  .intention p {
    line-height: 1.35;
    margin-top: 3px;
  }
  .line-icon {
    width: 30px;
    height: 34px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin: 38px 0 32px;
  }
  .stats dt {
    font-size: 25px;
  }
  .stats dd {
    font-size: 18px;
  }
  .section-cta > p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .button {
    font-size: 12px;
    min-height: 44px;
    padding: 11px 18px;
    border-width: 1.5px;
  }
  .section-intro {
    font-size: 17px;
    line-height: 1.45;
    margin-top: -8px;
    margin-bottom: 22px;
  }
  .design-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .design-tabs {
    gap: 9px;
    margin-bottom: 23px;
  }
  .design-tabs button {
    font-size: 14px;
    padding: 9px 13px;
    min-height: 42px;
    border-width: 1.4px;
  }
  .design-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .design-panel > p {
    font-size: 18px;
    padding: 0;
    min-height: 95px;
    align-self: stretch;
    line-height: 1.4;
  }
  .design-panel > img {
    width: min(100%, 330px);
    align-self: center;
    border-radius: 24px;
    aspect-ratio: 4/5;
  }
  .design-note {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.45;
  }
  .design-actions {
    display: grid;
    gap: 12px;
    justify-items: center;
  }
  .design-actions .button {
    font-size: 12px;
    min-width: 245px;
    white-space: normal;
  }
  .silver-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pricing-intro h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .pricing-intro > p {
    font-size: 17px;
    line-height: 1.45;
  }
  .pricing-intro .handwritten {
    font-family: inherit;
    font-style: normal;
    font-size: 16px;
    font-weight: 800;
    margin: 24px 0;
    text-align: center;
  }
  .price-card {
    width: 100%;
    max-width: 370px;
    justify-self: center;
    min-height: 350px;
    padding: 28px 22px;
    border-radius: 24px;
  }
  .price-card h3 {
    font-size: 18px;
    min-height: 0;
    max-width: 260px;
  }
  .price {
    font-size: 27px;
    margin-top: 20px;
  }
  .price span {
    font-size: 17px;
  }
  .format-tag {
    font-size: 13px;
    margin-top: 18px;
    padding: 7px 18px;
  }
  .price-card ul {
    font-size: 16px;
    margin: 22px 0;
    line-height: 1.4;
  }
  .price-card .button {
    max-width: 270px;
    min-height: 44px;
    font-size: 14px;
    margin-top: auto;
  }
  .gold-colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 50px 0 30px;
  }
  .gold-colors legend {
    float: none;
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 18px;
    font-size: 21px;
  }
  .gold-colors label span {
    font-size: 18px;
    padding: 8px 14px;
    border-width: 1.5px;
  }
  .gold-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .gold-grid .price-card {
    min-height: 370px;
    padding: 28px 22px;
  }
  .gold-grid .price-card h3 {
    min-height: 0;
  }
  .gold-grid .price {
    font-size: 27px;
    min-height: 0;
    white-space: normal;
  }
  .gold-grid .price span {
    font-size: 17px;
  }
  .gold-grid .price-card .button {
    font-size: 14px;
    gap: 10px;
    padding-inline: 15px;
  }
  .gold-grid .arrow {
    width: 28px;
  }
  .decor-silver {
    width: 250px;
    top: 8%;
    right: -145px;
    opacity: 0.4;
  }
  .decor-gold {
    width: 250px;
    bottom: 15%;
    left: -150px;
    opacity: 0.35;
  }
  .group-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .group-copy {
    font-size: 18px;
    line-height: 1.45;
  }
  .group-copy .button {
    margin-top: 22px;
    min-width: 220px;
  }
  .creative-note {
    font-size: 16px;
    margin-top: 36px !important;
  }
  .creative-note span {
    font-size: 25px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .group-photos {
    gap: 25px;
    padding-inline: 12px;
    grid-template-columns: 1fr 1.1fr;
    max-width: 460px;
    justify-self: center;
  }
  .group-photos img {
    border-radius: 23px;
  }
  .two-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .coworking h3 {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .coworking p {
    font-size: 17px;
    line-height: 1.4;
  }
  .coworking-book {
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
  }
  .coworking .coworking-price {
    font-size: 26px;
    margin-top: 8px;
  }
  .coworking-price span {
    font-size: 18px;
  }
  .coworking-book .button {
    font-size: 11px;
    min-height: 40px;
    padding-inline: 10px;
    margin-top: 13px;
  }
  .tools-photo {
    aspect-ratio: 1.5;
  }
  .coworking .caption-bold {
    font-size: 16px;
    line-height: 1.45;
    margin-top: 17px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 400px;
  }
  .step-card {
    min-height: 220px;
    padding: 25px;
    gap: 24px;
    border-radius: 25px;
  }
  .step-heading h3 {
    font-size: 20px;
  }
  .step-heading > span {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }
  .step-card > p {
    font-size: 15px;
    line-height: 1.45;
  }
  .certificate-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .gift-intro {
    font-size: 25px;
    line-height: 1.4;
    text-align: center;
  }
  .gift-visual {
    order: 2;
    align-self: center;
    max-width: 330px;
  }
  .gift-copy {
    order: 3;
    font-size: 17px;
    line-height: 1.45;
  }
  .gift-visual figcaption {
    margin-top: 23px;
  }
  .gift-visual .button {
    font-size: 12px;
  }
  .check-list {
    margin-top: 23px;
  }
  .check-list li {
    padding-left: 27px;
    margin-top: 10px;
  }
  .check-list li:before {
    font-size: 25px;
  }
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    font-size: 17px;
    line-height: 1.45;
  }
  .about-layout p + p {
    margin-top: 20px;
  }
  .about-facts {
    display: grid;
    gap: 4px;
    font-size: 18px;
    margin-top: 30px;
  }
  .studio-photo {
    width: min(80%, 280px);
    height: 360px;
    align-self: center;
    border-radius: 25px;
  }
  .why {
    margin-top: 5px;
    padding-block: 35px;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why .section-title {
    font-size: 21px;
    justify-content: center;
    text-align: center;
    margin-bottom: 28px;
  }
  .why p {
    font-size: 18px;
    line-height: 1.45;
  }
  .why .button {
    margin-top: 26px;
    font-size: 12px;
  }
  .result-photo {
    width: 100%;
    max-width: 400px;
    height: 440px;
    border-radius: 28px;
    justify-self: center;
  }
  .reviews {
    padding-top: 44px;
  }
  .review-heading {
    justify-content: center;
  }
  .review-heading > p {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 360px;
    margin: auto;
  }
  .review-image {
    border-radius: 22px;
  }
  .reviews figcaption {
    font-size: 14px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 17px 0;
    line-height: 1.45;
    gap: 14px;
  }
  .faq-list summary > span {
    flex-basis: 18px;
  }
  .faq-list details > div {
    font-size: 16px;
    padding: 0 22px 22px 0;
    line-height: 1.55;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    font-size: 14px;
  }
  .footer-brand {
    display: block;
    grid-column: 1/-1;
  }
  .brand-pair {
    justify-content: flex-start;
    gap: 22px;
    margin-bottom: 20px;
  }
  .brand-pair .brand {
    font-size: 25px;
  }
  .brand-cross {
    font-size: 43px;
  }
  .jewelry-brand {
    font-size: 22px;
  }
  .footer-brand > p {
    font-size: 17px;
    width: auto;
    max-width: 100%;
  }
  .footer-brand > h3 {
    display: block;
    margin-top: 25px;
  }
  .social-links {
    font-size: 15px;
    margin-top: 12px;
  }
  .site-footer h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  .site-footer h3:not(:first-child) {
    margin-top: 26px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
  .footer-grid > div:last-child h3 {
    margin: 0;
  }
  .footer-grid > div:last-child h3:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-grid > div:last-child nav:first-of-type {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-grid > div:last-child nav:last-of-type {
    grid-column: 2;
    grid-row: 2;
    align-content: start;
  }
  .footer-bottom {
    font-size: 11px;
    margin-top: 42px;
    padding: 20px 0 28px;
  }
  .footer-bottom .container {
    display: grid;
    gap: 9px;
  }
  .footer-nav {
    gap: 9px;
  }
  dialog {
    padding: 40px 24px 27px;
    border-radius: 23px;
    width: calc(100% - 28px);
    max-height: calc(100dvh - 28px);
    font-size: 16px;
  }
  dialog h2 {
    font-size: 27px;
    margin-top: 12px;
  }
  .booking-dialog > .button {
    font-size: 12px;
    min-height: 46px;
  }
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 14px;
  }
  .catalog-card h3 {
    font-size: 15px;
  }
  .catalog-card p {
    font-size: 13px;
  }
  .catalog-card .button {
    font-size: 10px;
  }
  .catalog-dialog h2 {
    font-size: 26px;
  }
  .review-dialog {
    padding: 58px 15px 18px;
  }
  .legal-header {
    padding-top: 30px;
    gap: 20px;
  }
  .legal-header .brand {
    font-size: 22px;
  }
  .legal-header > a:last-child {
    font-size: 14px;
  }
  .legal-main {
    padding-top: 20px;
  }
  .legal-main h1 {
    font-size: 29px;
  }
  .legal-main h2 {
    font-size: 24px;
  }
  .legal-main p,
  .legal-document {
    font-size: 15px;
  }
  .legal-nav {
    font-size: 14px;
    gap: 12px 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 374px) {
  :root {
    --gutter: 22px;
  }
  .hero-copy {
    width: 67%;
  }
  .gradient-title {
    font-size: 21px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-extra {
    font-size: 14px;
    max-width: 90%;
  }
  .hero-actions {
    max-width: 87%;
  }
  .hero-actions .button {
    font-size: 10px;
  }
  .hero-visual {
    left: 71%;
    height: 338px;
  }
  .hero-badge {
    left: -36px;
    width: 126px;
    font-size: 11px;
    padding: 10px;
  }
  .hero-location {
    font-size: 13px;
    margin-top: 22px;
  }
  .hero {
    min-height: 370px;
  }
  .section-title,
  .intentions .section-title {
    font-size: 19px;
  }
  .design-tabs {
    gap: 8px;
  }
  .design-tabs button {
    font-size: 12px;
    padding-inline: 11px;
  }
  .intention h3,
  .intention p {
    font-size: 16px;
  }
  .gold-colors {
    gap: 13px;
  }
  .gold-colors label span {
    font-size: 16px;
    padding-inline: 13px;
  }
  .brand-pair {
    gap: 15px;
  }
  .brand-pair .brand {
    font-size: 22px;
  }
  .jewelry-brand {
    font-size: 19px;
  }
  .coworking-book {
    gap: 12px;
  }
  .coworking-book .button {
    font-size: 9px;
  }
  .footer-grid {
    gap: 25px 15px;
    font-size: 12px;
  }
  .footer-grid a[href^="tel:"] {
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
.pricing {
  overflow: clip;
}
.handwritten,
.creative-note span {
  font-family: "Marck Script", cursive;
  font-style: normal;
}
.skip-link:not(:focus) {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: none;
}
.coworking-book > img {
  object-position: 50% 80%;
}
@media (min-width: 1160px) {
  .site-header > .brand {
    transform: translate(40px, 60px);
  }
  .hero-copy {
    padding-left: 40px;
    width: 68%;
  }
  .gradient-title .spark {
    position: static;
    margin-top: 6px;
    flex-basis: 0.8em;
  }
  .hero-visual {
    left: 71%;
  }
}
@media (max-width: 760px) {
  .hero-badge {
    bottom: 8px;
  }
  .pricing-intro .handwritten {
    font-family: Manrope, Arial, sans-serif;
  }
}
@media print {
  body {
    background: white;
  }
  .site-menu,
  .hero-actions,
  .button,
  .decor,
  .social-links,
  dialog,
  .review-image + figcaption {
    display: none !important;
  }
  .section {
    break-inside: avoid;
    padding-block: 20px;
  }
  .hero-visual {
    position: static;
    height: 300px;
    width: 40%;
  }
  .hero {
    display: flex;
    gap: 30px;
    min-height: 0;
  }
  .hero-badge {
    display: none;
  }
  .hero-copy {
    width: 60%;
  }
  .site-header {
    min-height: 110px;
    padding-top: 20px;
  }
  .result-photo {
    width: 100%;
    height: 350px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .faq-list details > div {
    display: block !important;
  }
  .footer-bottom {
    margin-top: 25px;
  }
}
/* First-party analytics controls. Hidden stays hidden despite button/link styles. */
[hidden] { display: none !important; }
.analytics-consent { position: fixed; z-index: 50; bottom: 16px; right: 16px; width: min(420px, calc(100% - 32px)); padding: 20px; border: 1px solid #e1ccc2; border-radius: 16px; background: #fffaf5; color: #292421; box-shadow: 0 8px 40px #0002; font: 14px/1.5 Manrope, sans-serif; }
.analytics-consent p { margin: 0 0 12px; }
.analytics-consent a { display: block; margin-bottom: 12px; text-decoration: underline; }
.analytics-consent button { display: inline-block; border: 1px solid #7b6259; border-radius: 8px; padding: 10px 12px; margin: 4px 8px 0 0; background: #fff; color: #292421; cursor: pointer; font: inherit; }
.analytics-consent button:disabled { opacity: .5; cursor: default; }
.footer-nav .analytics-settings { appearance: none; width: max-content; max-width: 100%; padding: 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.footer-nav .analytics-settings:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-nav .analytics-settings:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
