@font-face {
  font-family: "Architects Daughter";
  src: url("fonts/ArchitectsDaughter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: local("Aptos"), local("Segoe UI"), local("Arial");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: local("Aptos Display"), local("Segoe UI Semibold"), local("Arial Bold");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

:root {
  --ink: #161714;
  --ink-soft: #34342e;
  --paper: #fbfaf7;
  --paper-strong: #ffffff;
  --mist: #f1eee7;
  --line: #ded7ca;
  --copper: #b7834e;
  --copper-dark: #875b31;
  --olive: #3e5f52;
  --sage: #dfe9de;
  --blue: #24364d;
  --shadow: 0 22px 60px rgba(22, 23, 20, 0.14);
  --shadow-soft: 0 14px 36px rgba(22, 23, 20, 0.1);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 5rem;
  font-weight: 800;
}

h2 {
  max-width: 780px;
  font-size: 3rem;
  font-weight: 750;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper-strong);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--paper-strong);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(222, 215, 202, 0.8);
  box-shadow: 0 10px 30px rgba(22, 23, 20, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.brand .brand-logo {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  object-fit: contain;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: .015em;
  white-space: nowrap;
}

.brand-name [aria-hidden="true"] {
  display: inline-block;
  margin: 0 .04em;
  color: var(--copper);
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
}

.footer-brand > .brand {
  display: inline-flex;
}

.footer-brand > p {
  max-width: 290px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-panel a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-panel a:hover,
.site-header.menu-open .nav-panel a:hover,
.site-header.is-scrolled .nav-panel a:focus-visible,
.site-header.menu-open .nav-panel a:focus-visible {
  background: var(--mist);
}

.nav-panel .nav-cta {
  margin-left: 8px;
  color: var(--paper-strong);
  background: var(--olive);
}

.nav-panel .nav-cta:hover,
.nav-panel .nav-cta:focus-visible {
  color: var(--paper-strong);
  background: var(--copper-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(22, 23, 20, 0.14);
}

.button-primary {
  color: var(--paper-strong);
  background: var(--olive);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-light {
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button-dark {
  color: var(--paper-strong);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
}

.designer-bottom-actions .button-light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-strong);
}

.designer-bottom-actions .button-light:hover,
.designer-bottom-actions .button-light:focus-visible {
  color: var(--paper-strong);
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  padding: 150px 0 74px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-float 14s ease-in-out infinite alternate;
}

@keyframes hero-float {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-0.8%, -0.5%, 0); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.86) 0%, rgba(8, 9, 8, 0.6) 42%, rgba(8, 9, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.58) 0%, rgba(8, 9, 8, 0) 50%);
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c284;
}

.hero-lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.hero-badges li {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-badges strong {
  font-size: 1.08rem;
}

.hero-badges span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-strip {
  background: var(--ink);
  color: var(--paper-strong);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  min-height: 116px;
  padding: 24px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  font-family: "Sora", "Inter", sans-serif;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
  position: relative;
  isolation: isolate;
}

.split,
.custom-layout,
.process-layout,
.why-layout,
.craft-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.contact-copy p,
.process-copy p {
  color: #5d5a52;
  font-size: 1.03rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

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

.premium-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 50px;
}

.heading-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #5d5a52;
  font-size: 1.05rem;
}

.heading-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.heading-tags span,
.custom-mini-list span {
  padding: 9px 12px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.heading-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.heading-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.services-visual img {
  object-position: 42% 50%;
}

.custom-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #eee8dd);
}

.custom-visual img {
  width: 78%;
  min-height: 340px;
  max-height: 440px;
  object-fit: contain;
  padding: 22px 0 64px;
}

.visual-proof {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--paper-strong);
  background: rgba(16, 17, 15, 0.74);
  backdrop-filter: blur(16px);
}

.visual-proof span {
  color: #f5c284;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-proof strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
}

.custom-mini-list {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.inline-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-main,
.about-float,
.about-owner,
.craft-media img,
.process-copy img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-main {
  width: 86%;
  height: 420px;
  object-fit: cover;
}

.about-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--paper);
}

.about-owner {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 340px;
  padding: 12px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.about-owner img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.about-owner span,
.about-owner strong {
  display: block;
}

.about-owner span {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-owner strong {
  margin-top: 3px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
}

.services,
.why,
.testimonials {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.example-card,
.testimonial,
.why-grid article,
.contact-options a,
.contact-options p,
.custom-form,
.contact-form,
.faq-list details {
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--copper));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 95, 82, 0.38);
  box-shadow: var(--shadow);
}

.service-number {
  margin-bottom: 52px;
  color: var(--copper-dark);
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
}

.service-card p {
  margin-top: 14px;
  color: #625f58;
}

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

.catalog-heading {
  align-items: center;
}

.catalog-heading strong {
  color: var(--ink);
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.catalog-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-strong);
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(22, 23, 20, 0.06);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 131, 78, 0.45);
  box-shadow: var(--shadow);
}

.product-card.featured {
  border-color: rgba(62, 95, 82, 0.5);
}

.product-media {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(222, 215, 202, 0.72);
  background: linear-gradient(180deg, #ffffff, #f3efe7);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 220ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  flex: 1;
  display: grid;
  grid-template-rows: auto minmax(2.7rem, auto) auto 1fr;
  gap: 12px;
  padding: 18px;
}

.product-info h3 {
  display: flex;
  align-items: flex-start;
  overflow-wrap: anywhere;
}

.product-info p {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info span {
  color: #5d5a52;
  font-weight: 800;
}

.product-info .button {
  width: 100%;
  min-height: 44px;
  align-self: end;
  margin-top: 4px;
}

.packs {
  background: var(--mist);
}

.pack-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 247, 0.72));
  box-shadow: var(--shadow-soft);
}

.pack-showcase img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.pack-showcase h3 {
  max-width: 560px;
  font-size: 1.65rem;
}

.pack-showcase p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 14px;
  color: #625f58;
}

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

.pack-grid .product-media {
  aspect-ratio: 1.45 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f0e8);
}

.pack-grid .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.moments {
  background: #f8f8f4;
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
  grid-auto-rows: 260px;
  gap: 18px;
}

.moment-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.moment-card.is-large {
  grid-row: span 2;
}

.moment-card:nth-child(4) {
  grid-column: span 2;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.moment-card:hover img {
  transform: scale(1.035);
}

.moment-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--paper-strong);
  background: rgba(14, 15, 13, 0.74);
  backdrop-filter: blur(14px);
}

.moment-card span {
  color: #f5c284;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.moment-card strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.custom {
  background: #f3efe7;
}

.custom > .container {
  width: min(1280px, calc(100% - 40px));
}

.custom-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.custom-intro p:not(.eyebrow) {
  color: #5d5a52;
  font-size: 1.03rem;
}

.designer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.44fr);
  gap: 22px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.designer-workspace {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.designer-topbar,
.designer-add-actions,
.designer-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.designer-topbar {
  justify-content: space-between;
}

.design-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.chip-button,
.design-tab,
.panel-link {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.chip-button:hover,
.chip-button:focus-visible,
.design-tab:hover,
.design-tab:focus-visible,
.panel-link:hover,
.panel-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(62, 95, 82, 0.45);
}

.design-tab.is-active,
.chip-button.is-active {
  color: var(--paper-strong);
  border-color: var(--ink);
  background: var(--ink);
}

.designer-preview-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #f8f4ec);
  box-shadow: var(--shadow-soft);
}

.designer-preview {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: #080907;
}

.designer-preview svg {
  width: min(100%, 440px);
  height: auto;
  max-height: 600px;
  touch-action: none;
  user-select: none;
}

.designer-stage {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #080907;
  box-shadow: none;
  container-type: inline-size;
}

.designer-template {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.designer-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.designer-object {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  color: var(--object-color);
  cursor: grab;
  touch-action: none;
  transform: translate(-50%, -50%) rotate(var(--rotation));
  transform-origin: center;
  user-select: none;
}

.designer-object:active {
  cursor: grabbing;
}

.designer-object.is-selected {
  outline: 2px solid var(--copper-dark);
  outline-offset: 8px;
  filter: drop-shadow(0 12px 24px rgba(22, 23, 20, 0.18));
}

.designer-object-text {
  max-width: 82cqw;
  padding: 0.35em 0.45em;
  font-family: "Sora", "Inter", sans-serif;
  font-size: calc(var(--size) * 1cqw);
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: pre;
}

.designer-object-shape,
.designer-object-logo {
  width: calc(var(--size) * 1cqw);
  min-width: 28px;
  aspect-ratio: 1;
}

.designer-object-shape svg,
.designer-object-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.designer-object-shape svg {
  fill: currentColor;
}

.designer-object-logo img {
  object-fit: contain;
  filter: grayscale(1) contrast(900%);
}

.designer-object.is-white .designer-object-logo img {
  filter: grayscale(1) contrast(900%) invert(1);
}

.designer-object-glyph {
  width: calc(var(--size) * var(--width, 1) * 1cqw);
  min-width: 28px;
  aspect-ratio: 1;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", "Sora", sans-serif;
  font-size: calc(var(--size) * 0.94cqw);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.resize-handle {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 2px solid var(--paper-strong);
  border-radius: 50%;
  background: var(--copper-dark);
  box-shadow: 0 6px 16px rgba(22, 23, 20, 0.22);
  cursor: nwse-resize;
  opacity: 0;
}

.rotate-handle {
  position: absolute;
  right: -16px;
  top: -16px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 2px solid var(--paper-strong);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 6px 16px rgba(22, 23, 20, 0.22);
  cursor: grab;
  opacity: 0;
}

.rotate-handle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid var(--paper-strong);
  border-left-color: transparent;
  border-radius: 50%;
}

.designer-object.is-selected .rotate-handle {
  opacity: 1;
}

.designer-handle-base {
  fill: #fffdf8;
  stroke: #111111;
  stroke-width: 6;
}

.designer-handle-hole {
  fill: #f3efe7;
  stroke: #111111;
  stroke-width: 5;
}

.designer-guide {
  fill: none;
  stroke: rgba(17, 17, 17, 0.18);
  stroke-dasharray: 10 10;
  stroke-width: 3;
}

.designer-element {
  cursor: move;
}

.designer-element.is-selected {
  filter: drop-shadow(0 0 0 #111111) drop-shadow(0 0 7px rgba(183, 131, 78, 0.92));
}

.designer-selection {
  fill: none;
  stroke: var(--copper-dark);
  stroke-dasharray: 7 7;
  stroke-width: 3;
  pointer-events: none;
}

.designer-preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #625f58;
  font-size: 0.92rem;
  font-weight: 800;
}

.designer-preview-meta strong {
  color: var(--ink);
  font-family: "Sora", "Inter", sans-serif;
}

.designer-bottom-actions .button {
  flex: 1 1 210px;
}

.designer-bottom-actions .button:disabled,
.designer-bottom-actions .button.is-busy {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.designer-status {
  min-height: 1.4em;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 850;
}

.designer-whatsapp-note {
  margin-top: -4px;
  padding: 12px 14px;
  border: 1px solid rgba(62, 95, 82, 0.18);
  border-radius: var(--radius);
  color: #4f5f58;
  background: rgba(223, 233, 222, 0.58);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.designer-download-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(62, 95, 82, 0.22);
  border-radius: var(--radius);
  background: #ffffff;
}

.designer-download-fallback[hidden] {
  display: none;
}

.designer-download-fallback a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.designer-download-fallback a[data-whatsapp-link] {
  background: var(--olive);
}

.designer-panel {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  max-height: calc(100svh - var(--header-height) - 32px);
  overflow-y: auto;
  padding-right: 4px;
  display: grid;
  gap: 14px;
  scrollbar-width: thin;
}

.panel-block {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.panel-heading .eyebrow {
  margin-bottom: 0;
}

.panel-link {
  min-height: 34px;
  padding: 8px 10px;
  color: var(--copper-dark);
  background: transparent;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 850;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
}

.segmented-control button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.segmented-control button.is-active {
  color: var(--paper-strong);
  background: var(--ink);
}

.color-control button[data-element-color="white"].is-active {
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.designer-grid-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
}

.designer-grid-fields label,
.inspector-controls label {
  display: grid;
  gap: 7px;
}

.inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.inline-control .chip-button {
  min-height: 46px;
  border-radius: 7px;
}

.object-library {
  display: grid;
  gap: 10px;
}

.object-library .panel-heading span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--paper-strong);
  background: var(--olive);
  font-size: 0.74rem;
  font-weight: 900;
}

.object-filter-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
  gap: 10px;
  align-items: end;
}

.object-filter-row label {
  display: grid;
  gap: 7px;
}

.object-grid {
  max-height: 312px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  gap: 8px;
  overflow-y: auto;
  padding: 4px 2px 4px 0;
  scrollbar-width: thin;
}

.object-item {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(222, 215, 202, 0.92);
  border-radius: 7px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f8f4ec);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.object-item:hover,
.object-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(62, 95, 82, 0.45);
  box-shadow: 0 10px 22px rgba(22, 23, 20, 0.12);
}

.object-item svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: currentColor;
}

.upload-note {
  margin: -4px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(183, 131, 78, 0.28);
  border-radius: 7px;
  color: #4c463d;
  background: #fff8ec;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.upload-note strong {
  color: var(--ink);
  font-weight: 900;
}

.upload-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

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

.upload-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.upload-file-name {
  min-width: 0;
  overflow: hidden;
  color: #625f58;
  font-size: 0.9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.engrave-mode {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(90deg, #111 0 50%, #fff 50% 100%);
  box-shadow: inset 0 0 0 4px var(--paper-strong);
}

.engrave-mode span {
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
  line-height: 1;
}

.inspector-empty {
  color: #625f58;
  font-size: 0.94rem;
  font-weight: 750;
}

.inspector-controls {
  display: grid;
  gap: 12px;
}

.custom-examples {
  max-width: 920px;
  margin: 32px auto 0;
}

.carousel {
  min-width: 0;
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.86)),
    radial-gradient(circle at 18% 12%, rgba(183, 131, 78, 0.14), transparent 36%);
  box-shadow: var(--shadow);
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.carousel-top .eyebrow {
  margin-bottom: 8px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  color: var(--paper-strong);
  background: var(--ink);
  transform: translateY(-2px);
}

.carousel-track {
  display: block;
  position: relative;
  gap: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 23, 20, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, #ffffff 0%, #ffffff 46%, #f3efe7 100%);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 18px 46px rgba(22, 23, 20, 0.1);
  touch-action: pan-y;
  user-select: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.example-card {
  position: absolute;
  inset: 0;
  flex: none;
  max-width: 100%;
  overflow: hidden;
  scroll-snap-align: none;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.example-card.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.example-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(14px, 3vw, 34px) clamp(18px, 4vw, 58px) 8px;
  background: transparent;
  -webkit-user-drag: none;
  user-select: none;
}

.example-card figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(222, 215, 202, 0.72);
  font-weight: 850;
}

.carousel-progress {
  height: 5px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(222, 215, 202, 0.92);
}

.carousel-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), var(--copper));
  transition: width 320ms ease;
}

.carousel-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}

.carousel-meta strong,
.carousel-meta span {
  display: block;
}

.carousel-meta strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
}

.carousel-meta span {
  margin-top: 4px;
  color: #625f58;
  font-size: 0.86rem;
  font-weight: 850;
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.carousel-thumb {
  min-height: 68px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: var(--paper-strong);
  box-shadow: 0 8px 20px rgba(22, 23, 20, 0.08);
}

.carousel-thumb.is-active {
  border-color: var(--olive);
}

.carousel-thumb img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  object-position: center;
}

.custom-examples {
  max-width: none;
  margin: 42px 0 0;
}

.custom-examples .carousel {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.custom-examples .carousel-top {
  margin-bottom: 18px;
}

.custom-examples .carousel-actions,
.custom-examples .carousel-progress,
.custom-examples .carousel-meta {
  display: none;
}

.custom-examples .carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.custom-examples .example-card,
.custom-examples .example-card.is-active {
  position: relative;
  inset: auto;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 250px auto;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 12px 28px rgba(22, 23, 20, 0.08);
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.custom-examples .example-card img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}

.custom-examples .example-card figcaption {
  min-height: 50px;
  justify-content: flex-start;
  padding: 13px 14px;
  text-align: left;
  background: #fffdf8;
}

.custom-form,
.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.form-heading {
  margin-bottom: 6px;
}

label {
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper-strong);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input[readonly] {
  color: var(--ink-soft);
  background: #f4f1eb;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(62, 95, 82, 0.14);
}

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

.process-layout {
  align-items: start;
}

.process-copy img {
  width: 100%;
  max-height: 540px;
  margin-top: 28px;
  object-fit: cover;
  object-position: top;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: var(--radius);
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 850;
}

.steps strong {
  display: block;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.12rem;
}

.steps p {
  margin-top: 8px;
  color: #625f58;
}

.why-layout {
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-grid article {
  min-height: 180px;
  padding: 22px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  margin-bottom: 12px;
  font-family: "Sora", "Inter", sans-serif;
}

.why-grid span {
  color: #625f58;
}

.why .button {
  margin-top: 28px;
}

.craft {
  background: var(--ink);
  color: var(--paper-strong);
}

.craft .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.craft-media img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

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

.testimonial-marquee {
  overflow: hidden;
  margin-inline: -8px;
  padding: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-marquee .testimonial-grid {
  width: max-content;
  grid-template-columns: repeat(6, minmax(280px, 360px));
  animation: testimonials-loop 26s linear infinite;
}

.testimonial-marquee:hover .testimonial-grid,
.testimonial-marquee:focus-within .testimonial-grid {
  animation-play-state: paused;
}

@keyframes testimonials-loop {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.product-card,
.pack-showcase,
.testimonial,
.contact-options a,
.designer-shell {
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card:hover,
.pack-showcase:hover,
.testimonial:hover,
.contact-options a:hover,
.designer-shell:hover {
  transform: translateY(-5px) perspective(900px) rotateX(1deg) rotateY(-1deg);
}

.designer-preview-card {
  background: radial-gradient(circle at 50% 42%, rgba(183,131,78,.14), transparent 42%), linear-gradient(180deg, #fffdf8, #f8f4ec);
}

.testimonial-heading {
  align-items: end;
}

.testimonial-proof {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.testimonial-proof img {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
}

.testimonial-proof span,
.testimonial-proof strong {
  display: block;
}

.testimonial-proof span {
  margin-bottom: 8px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-proof strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.testimonial {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  background: var(--olive);
}

.stars {
  margin-bottom: 22px;
  color: var(--copper-dark);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.testimonial figcaption {
  margin-top: 24px;
  color: var(--copper-dark);
  font-weight: 850;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  background: var(--paper-strong);
  box-shadow: none;
}

.faq-list summary {
  padding: 20px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 750;
  cursor: pointer;
}

.faq-list p {
  padding: 0 20px 20px;
  color: #625f58;
}

.contact {
  background: radial-gradient(circle at 12% 18%, rgba(183, 131, 78, 0.12), transparent 28%), #f8f8f4;
}

.contact-layout {
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-options a,
.contact-options p {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin: 0;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: none;
  border: 1px solid rgba(222, 215, 202, 0.85);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(62, 95, 82, 0.5);
}

.contact-options strong {
  font-family: "Sora", "Inter", sans-serif;
}

.contact-options span {
  color: #625f58;
  font-size: 0.94rem;
}

.contact-form {
  border: 1px solid rgba(222, 215, 202, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, #141613 0%, #0d0f0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.75fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--paper-strong);
  font-size: 1.2rem;
}

.footer h2 {
  margin-bottom: 14px;
  color: var(--paper-strong);
  font-size: 0.92rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
}

.footer a {
  margin-bottom: 9px;
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--paper-strong);
}

.legal details {
  margin-bottom: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.legal summary {
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 850;
}

.legal p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom span,
.footer-bottom a {
  display: inline;
  margin: 0;
}

.footer-bottom a {
  color: var(--paper-strong);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.product-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: min(860px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.product-dialog::backdrop {
  background: rgba(12, 13, 11, 0.66);
  backdrop-filter: blur(8px);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 620px;
}

.dialog-media {
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--mist);
}

.dialog-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.dialog-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 42px;
  max-height: min(860px, calc(100svh - 28px));
  overflow-y: auto;
}

.dialog-content h2 {
  font-size: 2.1rem;
}

.dialog-content p {
  color: #625f58;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 900;
}

.quantity-box {
  display: inline-grid;
  grid-template-columns: 44px 66px 44px;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
}

.quantity-box button {
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 900;
}

.quantity-box output {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-inline: 1px solid var(--line);
  font-weight: 900;
}

.order-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--mist);
}

.order-options {
  border-color: rgba(62, 95, 82, 0.24);
  background: linear-gradient(180deg, #ffffff, #f5f1ea);
}

.order-options legend {
  color: var(--olive);
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-summary dt {
  color: #625f58;
}

.order-summary dd {
  margin: 0;
  font-weight: 900;
}

.dialog-note {
  font-size: 0.92rem;
}

.order-form {
  display: grid;
  gap: 18px;
}

.delivery-fieldset {
  padding: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.delivery-fieldset.order-options {
  border-color: rgba(62, 95, 82, 0.24);
  background: linear-gradient(180deg, #ffffff, #f5f1ea);
}

.delivery-fieldset legend {
  padding: 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 850;
}

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

.delivery-grid .field {
  display: grid;
  gap: 7px;
}

.field[hidden] {
  display: none;
}

.delivery-grid .wide {
  grid-column: 1 / -1;
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

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

  .premium-heading {
    grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
    gap: 36px;
  }

  .designer-shell {
    grid-template-columns: 1fr;
  }

  .designer-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

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

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

  .custom-examples .carousel-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-panel a {
    border-radius: 7px;
  }

  .nav-panel .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .split,
  .custom-layout,
  .process-layout,
  .why-layout,
  .craft-layout,
  .contact-layout,
  .faq-layout,
  .pack-showcase,
  .custom-intro,
  .premium-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .premium-heading {
    gap: 18px;
  }

  .premium-heading .heading-copy {
    order: -1;
  }

  .heading-visual,
  .heading-visual img {
    min-height: 300px;
  }

  .custom-visual img {
    max-height: 360px;
  }

  .testimonial-proof {
    min-height: auto;
  }

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

  .moment-card.is-large {
    grid-row: span 1;
  }

  .moment-card:nth-child(4) {
    grid-column: auto;
  }

  .about-media {
    min-height: 470px;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-dialog {
    overflow-y: auto;
  }

  .dialog-media {
    padding: 24px;
  }

  .dialog-media img {
    max-height: 310px;
  }

  .dialog-content {
    padding: 30px;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .custom > .container {
    width: min(100% - 28px, 1280px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    min-height: 84svh;
    padding: 128px 0 46px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 9, 8, 0.88) 0%, rgba(8, 9, 8, 0.54) 70%, rgba(8, 9, 8, 0.24) 100%),
      linear-gradient(0deg, rgba(8, 9, 8, 0.58) 0%, rgba(8, 9, 8, 0) 52%);
  }

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

  .button {
    width: 100%;
  }

  .hero-badges,
  .trust-grid,
  .service-grid,
  .product-grid,
  .pack-grid,
  .moments-grid,
  .testimonial-grid,
  .why-grid,
  .contact-options,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    display: grid;
  }

  .trust-grid {
    display: grid;
  }

  .trust-grid p {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 74px 0;
  }

  .about-media {
    min-height: 370px;
  }

  .about-main {
    width: 92%;
    height: 310px;
  }

  .about-float {
    width: 42%;
    border-width: 5px;
  }

  .about-owner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 60px 1fr;
    max-width: none;
  }

  .about-owner img {
    width: 60px;
    height: 60px;
  }

  .service-card,
  .testimonial,
  .why-grid article {
    min-height: auto;
  }

  .heading-visual,
  .heading-visual img {
    min-height: 250px;
  }

  .services-visual img {
    object-position: center;
  }

  .custom-visual img {
    width: 72%;
    min-height: 300px;
    padding-bottom: 76px;
  }

  .heading-tags span,
  .custom-mini-list span {
    font-size: 0.8rem;
  }

  .example-card {
    flex-basis: auto;
  }

  .example-card img {
    height: 100%;
    padding: 12px 16px 8px;
  }

  .custom-form,
  .contact-form {
    padding: 22px;
  }

  .carousel {
    padding: 18px;
  }

  .pack-showcase {
    padding: 18px;
  }

  .designer-shell,
  .designer-preview-card,
  .panel-block {
    padding: 14px;
  }

  .designer-preview {
    min-height: 520px;
  }

  .designer-preview-meta,
  .designer-topbar {
    display: grid;
  }

  .designer-grid-fields,
  .inline-control {
    grid-template-columns: 1fr;
  }

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

  .object-grid {
    grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  }

  .custom-examples .carousel-track {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .custom-examples .example-card {
    grid-template-rows: 280px auto;
  }

  .carousel-top {
    align-items: flex-start;
  }

  .carousel-track {
    aspect-ratio: 0.92 / 1;
  }

  .carousel-meta {
    grid-template-columns: 1fr;
  }

  .carousel-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-proof {
    grid-template-columns: 0.52fr 1fr;
    padding: 18px;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.82rem;
  }

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

  .brand img {
    width: 42px;
    height: 42px;
  }

  .designer-preview {
    min-height: 460px;
  }

  .designer-preview svg {
    width: min(100%, 340px);
  }

  .segmented-control {
    border-radius: var(--radius);
  }

  .segmented-control button {
    border-radius: 6px;
    font-size: 0.86rem;
  }

  .dialog-content h2 {
    font-size: 1.65rem;
  }

  .product-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
  }

  .dialog-content {
    padding: 22px;
  }

  .dialog-media {
    padding: 16px;
  }

  .dialog-media img {
    max-height: 220px;
  }

  .delivery-fieldset {
    padding: 14px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .testimonial-marquee .testimonial-grid {
    animation: none;
  }

  .hero-bg {
    animation: none;
  }
}

/* Multipage commercial architecture */
.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; }
body.menu-lock { overflow: hidden; }
.nav-panel a.is-active { color: var(--paper-strong); background: rgba(255, 255, 255, .17); }
.site-header.is-scrolled .nav-panel a.is-active,
.site-header.menu-open .nav-panel a.is-active { color: var(--paper-strong); background: var(--copper-dark); }
.container-wide { width: min(1480px, calc(100% - 40px)); }
.section-soft { background: linear-gradient(180deg, #f1eee7, #f7f4ed); }
.section-ink { color: var(--paper-strong); background: radial-gradient(circle at 85% 5%, rgba(183, 131, 78, .2), transparent 34%), var(--ink); }
.light-copy > p, .light-copy p { color: rgba(255, 255, 255, .7); }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.heading-row > p { max-width: 470px; }
.compact-heading { margin-bottom: 34px; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--olive); font-weight: 800; }
.text-link:hover, .text-link:focus-visible, .card-link:hover, .card-link:focus-visible { color: var(--copper-dark); text-decoration: underline; text-underline-offset: 4px; }
.split-feature { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.section-copy { display: grid; gap: 20px; }
.section-copy > p:not(.eyebrow) { color: #625f58; font-size: 1.06rem; }
.feature-image, .portrait-main, .craft-visual, .story-gallery figure { overflow: hidden; border: 1px solid rgba(222, 215, 202, .92); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.feature-image img { width: 100%; max-height: 620px; object-fit: contain; }
.depth-image { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.access-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.access-card { min-height: 460px; position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: end; padding: 26px; overflow: hidden; border: 1px solid rgba(22, 23, 20, .1); border-radius: var(--radius); color: #fff; background: var(--ink); box-shadow: var(--shadow-soft); transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform 200ms ease, box-shadow 200ms ease; }
.access-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .84)); }
.access-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.access-designer img { padding: 42px; object-fit: contain; background: #0b0c09; }
.access-card strong { display: block; margin-bottom: 7px; font-family: "Sora", sans-serif; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.access-card p { color: rgba(255, 255, 255, .72); }
.access-number { position: absolute; top: 22px; right: 22px; font-weight: 800; }
[data-tilt].is-tilting { box-shadow: 0 30px 70px rgba(22, 23, 20, .2); }
.home-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-info h2 { max-width: none; font-size: 1.28rem; }
.product-info .card-link { margin-top: 12px; }
.process-home .process-list, .section-ink .process-list { color: var(--ink); }
.testimonials-home .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.final-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: clamp(30px, 6vw, 70px); border: 1px solid rgba(183, 131, 78, .24); border-radius: var(--radius); background: radial-gradient(circle at 95% 20%, rgba(183, 131, 78, .18), transparent 35%), #ebe6da; }
.final-cta-card > div:first-child { display: grid; gap: 15px; }
.final-cta-card > div:first-child p:last-child { max-width: 660px; color: #625f58; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: none; }
.footer-grid h2 { margin-bottom: 12px; color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 7px; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.page-hero { min-height: 460px; position: relative; display: grid; align-items: end; padding: 160px 0 74px; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 10%, rgba(183, 131, 78, .3), transparent 30%), var(--ink); }
.page-hero-content { position: relative; z-index: 2; display: grid; gap: 18px; }
.page-hero-content h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-hero-content > p:last-child { max-width: 700px; color: rgba(255, 255, 255, .72); font-size: 1.1rem; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 50px; align-items: end; }
.page-hero-grid > img { width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 24px 44px rgba(0, 0, 0, .38)); }
.page-hero-bg, .page-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-bg { object-fit: cover; }
.page-hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(8, 9, 7, .9), rgba(8, 9, 7, .5) 60%, rgba(8, 9, 7, .25)); }
.catalog-toolbar { display: grid; gap: 18px; margin-bottom: 24px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.catalog-search { display: grid; gap: 8px; font-weight: 800; }
.catalog-search input { width: 100%; min-height: 52px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters button { min-height: 42px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--paper); font-weight: 750; }
.catalog-filters button.is-active { color: #fff; border-color: var(--olive); background: var(--olive); }
.catalog-results { color: #625f58; font-weight: 750; }
.catalog-price-note { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-bottom: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.catalog-price-note > div { display: grid; gap: 4px; padding: 18px; background: #f7f4ed; }
.catalog-price-note span { color: #625f58; font-size: .92rem; }
.catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-grid .product-card[hidden] { display: none; }
.catalog-empty { padding: 70px 20px; text-align: center; }
.catalog-empty p { margin: 12px 0 22px; color: #625f58; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 12px 15px 12px 42px; position: relative; border: 1px solid var(--line); border-radius: 7px; background: #fff; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 16px; color: var(--olive); }
.form-privacy { color: #625f58; font-size: .84rem; }
.form-privacy a, .privacy-check a, .contact-help a, .faq-groups a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.designer-page-hero { min-height: 380px; }
.designer-section { padding-top: 38px; }
.designer-guide { display: flex; justify-content: space-between; gap: 22px; margin-bottom: 16px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 7px; background: #f3efe7; font-size: .92rem; }
.designer-guide a { flex: none; color: var(--olive); font-weight: 800; }
.designer-accordion > summary { display: none; }
.examples-carousel { max-width: 980px; margin: 54px auto 0; }
.carousel-pause { width: auto; padding-inline: 14px; font-size: .82rem; font-weight: 800; }
.portrait-stack { position: relative; }
.portrait-main { width: 100%; }
.portrait-stack > img { width: 100%; }
.portrait-note { position: absolute; right: 18px; bottom: 18px; display: grid; padding: 14px 18px; color: #fff; border-radius: 7px; background: rgba(22, 23, 20, .9); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 750; }
.story-gallery { display: grid; grid-template-columns: 1fr 1.4fr 1.4fr; gap: 16px; }
.story-gallery figure { display: grid; grid-template-rows: 320px auto; margin: 0; }
.story-gallery img { width: 100%; height: 100%; object-fit: cover; }
.story-gallery figcaption { padding: 14px 16px; font-weight: 800; }
.craft-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.craft-visual img { width: 100%; }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(38px, 7vw, 90px); align-items: start; }
.contact-details { display: grid; gap: 18px; }
.contact-details > p:not(.eyebrow) { color: #625f58; }
.contact-details .contact-options { grid-template-columns: 1fr; }
.contact-form-page { display: grid; gap: 18px; padding: clamp(24px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.contact-form-page > div:first-child { display: grid; gap: 10px; }
.contact-form-page label:not(.privacy-check) { display: grid; gap: 7px; font-weight: 800; }
.contact-form-page input:not([type="checkbox"]), .contact-form-page select, .contact-form-page textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); }
.privacy-check { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: #625f58; font-size: .9rem; }
.privacy-check input { width: 20px; height: 20px; margin-top: 2px; }
.form-error { min-height: 1.4em; color: #8b251e; font-weight: 750; }
.contact-next { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-next > div { display: grid; gap: 12px; }
.faq-page-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(36px, 7vw, 90px); align-items: start; }
.faq-index { position: sticky; top: calc(var(--header-height) + 24px); display: grid; gap: 5px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq-index strong { margin-bottom: 8px; }
.faq-index a { padding: 9px 10px; border-radius: 6px; }
.faq-index a:hover, .faq-index a:focus-visible { background: var(--mist); }
.faq-groups { display: grid; gap: 54px; }
.faq-groups section { scroll-margin-top: calc(var(--header-height) + 24px); }
.faq-groups h2 { margin: 7px 0 22px; }
.faq-groups details { border-top: 1px solid var(--line); }
.faq-groups details:last-child { border-bottom: 1px solid var(--line); }
.faq-groups summary { padding: 18px 42px 18px 0; position: relative; cursor: pointer; font-family: "Sora", sans-serif; font-weight: 750; }
.faq-groups summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.4rem; }
.faq-groups details[open] summary::after { content: "−"; }
.faq-groups details p { max-width: 780px; padding: 0 34px 20px 0; color: #625f58; }
.site-intro { display: none; }
.js .site-intro { display: grid; }
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(24px) scale(.992); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .catalog-grid, .home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .designer-shell { grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr); }
}

@media (max-width: 900px) {
  .access-grid, .catalog-price-note, .testimonials-home .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .split-feature, .craft-grid, .contact-page-grid, .faq-page-layout { grid-template-columns: 1fr; }
  .faq-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-index strong { grid-column: 1 / -1; }
  .story-gallery { grid-template-columns: 1fr 1fr; }
  .story-gallery figure:first-child { grid-column: 1 / -1; }
  .page-hero-grid { grid-template-columns: 1fr .5fr; }
}

@media (max-width: 760px) {
  .heading-row, .final-cta-card, .contact-next, .designer-guide { align-items: flex-start; flex-direction: column; }
  .catalog-grid, .home-product-grid, .access-grid, .catalog-price-note, .testimonials-home .testimonial-grid, .story-gallery { grid-template-columns: 1fr; }
  .story-gallery figure:first-child { grid-column: auto; }
  .access-card { min-height: 390px; }
  .page-hero { min-height: 390px; padding: 130px 0 54px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid > img { display: none; }
  .designer-accordion > summary { display: block; margin: -4px -4px 16px; padding: 11px 36px 11px 12px; position: relative; border-radius: 6px; background: var(--mist); font-weight: 800; cursor: pointer; }
  .designer-accordion > summary::after { content: "+"; position: absolute; right: 12px; }
  .designer-accordion[open] > summary::after { content: "−"; }
  .designer-accordion .panel-heading .eyebrow, .designer-accordion > .eyebrow { display: none; }
  .carousel-actions { flex-wrap: wrap; }
  .carousel-pause { order: 3; width: 100%; }
  .faq-index { grid-template-columns: 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions .button, .final-cta-card > .button { width: 100%; }
}

@media (max-width: 430px) {
  .container, .container-wide { width: min(100% - 28px, 1120px); }
  .page-hero-content h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .catalog-toolbar, .contact-form-page, .final-cta-card { padding: 20px; }
  .catalog-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .catalog-filters button { border-radius: 7px; }
  .carousel-top { display: grid; }
  .designer-guide a { flex: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .depth-image, [data-tilt] { transform: none !important; }
}

/* Premium launch sequence and canonical designer scene */
body.is-loading {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: #fff8eb;
  background:
    radial-gradient(circle at 50% 42%, rgba(183, 131, 78, 0.18), transparent 34%),
    #0d0d0b;
  perspective: 1100px;
  animation: intro-lifecycle 2.05s cubic-bezier(.7, 0, .2, 1) both;
}

.site-intro.is-finished {
  visibility: hidden;
  pointer-events: none;
}

.site-intro__content {
  display: grid;
  justify-items: center;
  gap: 12px;
  transform-style: preserve-3d;
  animation: intro-mark-in 1.45s cubic-bezier(.22, 1, .36, 1) both;
}

.site-intro__mark {
  position: relative;
  width: 146px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 218, 166, 0.22);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48), 0 0 55px rgba(183, 131, 78, .14);
}

.site-intro__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.site-intro__laser {
  position: absolute;
  inset: -20% -35%;
  background: linear-gradient(105deg, transparent 43%, rgba(255, 216, 157, .12) 48%, #ffcc7b 50%, rgba(255, 216, 157, .12) 52%, transparent 57%);
  filter: drop-shadow(0 0 10px #e9a94f);
  transform: translateX(-65%);
  animation: intro-laser-sweep 1.05s .28s cubic-bezier(.65, 0, .35, 1) both;
}

.site-intro__content strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: .18em;
}

.site-intro__content > span {
  color: #caa778;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@keyframes intro-lifecycle {
  0%, 78% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes intro-mark-in {
  0% { opacity: 0; transform: translateZ(-120px) rotateX(16deg) rotateY(-14deg) scale(.76); }
  62% { opacity: 1; transform: translateZ(26px) rotateX(-2deg) rotateY(3deg) scale(1.02); }
  100% { opacity: 1; transform: translateZ(0) rotateX(0) rotateY(0) scale(1); }
}

@keyframes intro-laser-sweep {
  from { transform: translateX(-65%); }
  to { transform: translateX(65%); }
}

.product-card {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  will-change: transform;
}

.product-card:hover,
.product-card.is-tilting {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.product-media {
  --media-pad: clamp(16px, 1.8vw, 24px);
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.product-media img,
.pack-grid .product-media img {
  position: absolute;
  inset: var(--media-pad);
  width: calc(100% - (var(--media-pad) * 2));
  height: calc(100% - (var(--media-pad) * 2));
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-card:hover .product-media img {
  transform: scale(1.01);
}

.dialog-media {
  overflow: hidden;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.designer-shell:hover {
  transform: none;
}

.designer-preview {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, rgba(183, 131, 78, .12), transparent 42%),
    #090907;
}

.designer-preview::before {
  content: "ZONA DE GRABADO · ESCALA CANÓNICA 1000 × 1000";
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, .42);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .13em;
  pointer-events: none;
}

.designer-preview .designer-canonical-scene {
  width: min(100%, 610px);
  max-width: 100%;
  height: auto;
  max-height: 610px;
  border-radius: 10px;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .34));
  animation: designer-scene-in .72s cubic-bezier(.22, 1, .36, 1) both;
  touch-action: none;
  user-select: none;
}

.designer-loading {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 36px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.designer-loading strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.designer-loading span:last-child {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

.designer-loading__spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, .18);
  border-top-color: var(--sand);
  border-radius: 50%;
  animation: designer-loading-spin .8s linear infinite;
}

[data-designer-state="loading"] .designer-panel,
[data-designer-state="loading"] .designer-add-actions,
[data-designer-state="loading"] .designer-bottom-actions,
[data-designer-state="error"] .designer-panel,
[data-designer-state="error"] .designer-add-actions,
[data-designer-state="error"] .designer-bottom-actions {
  opacity: .55;
  pointer-events: none;
}

.designer-retry {
  margin-top: 8px;
  pointer-events: auto;
}

@keyframes designer-loading-spin {
  to { transform: rotate(360deg); }
}

.designer-canonical-scene [data-object-id] {
  cursor: grab;
  pointer-events: visiblePainted;
}

.designer-canonical-scene [data-object-id]:active,
.designer-selection-ui [data-rotate-handle] {
  cursor: grabbing;
}

.designer-selection-ui [data-resize-handle] {
  cursor: nwse-resize;
}

@keyframes designer-scene-in {
  from { opacity: 0; transform: perspective(900px) translateZ(-80px) rotateX(5deg) rotateY(-6deg) scale(.96); }
  to { opacity: 1; transform: perspective(900px) translateZ(0) rotateX(0) rotateY(0) scale(1); }
}

[data-text-input],
[data-element-text] {
  font-family: "Architects Daughter", cursive;
  font-size: 1.08rem;
}

.object-item-text {
  display: block;
  overflow: hidden;
  font-family: "Architects Daughter", cursive;
  font-size: .92rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.designer-status[data-tone="success"] { color: var(--olive); }
.designer-status[data-tone="error"] { color: #9f2e22; }

.chip-button:disabled,
.designer-bottom-actions .button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

[data-reveal] {
  transition-delay: calc(var(--reveal-index, 0) * 45ms);
}

@media (max-width: 680px) {
  .designer-preview {
    min-height: auto;
    aspect-ratio: 1;
  }

  .designer-preview .designer-canonical-scene {
    width: 100%;
    max-height: none;
  }

  .designer-preview::before {
    top: 9px;
    left: 10px;
    font-size: .5rem;
  }

  .designer-add-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .designer-add-actions .chip-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .designer-preview {
    min-height: auto;
  }

  .designer-preview .designer-canonical-scene {
    width: 100%;
  }

  .site-intro__mark {
    width: 122px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    animation-duration: .12s !important;
  }

  .site-intro__content,
  .site-intro__laser,
  .designer-preview .designer-canonical-scene {
    animation: none !important;
  }

  .product-card,
  .product-card:hover,
  .product-card.is-tilting {
    transform: none;
  }
}

html:not(.js) .site-intro { display: none; }
.js .site-intro { display: grid; grid-template-rows: auto auto auto; align-content: center; gap: 12px; }
.site-intro > p { font-family: "Sora", "Inter", sans-serif; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 800; letter-spacing: .16em; }
.site-intro > span { color: #caa778; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.page-legal { background: #f7f4ed; }
.legal-main { padding-top: var(--header-height); }
.legal-hero { padding: 72px 0 52px; color: #fff; background: radial-gradient(circle at 82% 10%, rgba(183, 131, 78, .28), transparent 34%), var(--ink); }
.legal-hero .container { display: grid; gap: 14px; }
.legal-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-hero p:last-child { color: rgba(255, 255, 255, .65); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(34px, 6vw, 82px); align-items: start; padding-top: 52px; padding-bottom: 90px; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 22px); display: grid; gap: 5px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.legal-nav a { padding: 9px 11px; border-radius: 6px; font-weight: 700; }
.legal-nav a:hover, .legal-nav a:focus-visible { background: var(--mist); }
.legal-nav a.is-active { color: #fff; background: var(--olive); }
.legal-content { min-width: 0; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-of-type { padding-top: 0; }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-content p, .legal-content li { color: #57544e; }
.legal-content p + p { margin-top: 13px; }
.legal-content ul, .legal-content ol { display: grid; gap: 10px; padding-left: 22px; }
.legal-content code { padding: 2px 5px; border-radius: 4px; background: #ebe6da; }
.legal-warning { display: grid; gap: 8px; margin-bottom: 34px; padding: 20px; border: 1px solid #c89b62; border-left-width: 5px; border-radius: var(--radius); background: #fff7e9; }
.legal-data { display: grid; gap: 1px; margin: 0 0 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.legal-data > div { display: grid; grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr); gap: 18px; padding: 13px 15px; background: #fff; }
.legal-data dt { font-weight: 800; }
.legal-data dd { margin: 0; color: #625f58; }

@media (max-width: 800px) {
  .legal-layout { grid-template-columns: 1fr; padding-top: 30px; }
  .legal-nav { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .legal-nav { grid-template-columns: 1fr; }
  .legal-data > div { grid-template-columns: 1fr; gap: 3px; }
}

@media (max-width: 900px) {
  .designer-shell { grid-template-columns: minmax(0, 1fr); }
  .designer-workspace, .designer-panel, .panel-block { min-width: 0; width: 100%; }
}

/* 2026 visual polish: more depth, rhythm and useful motion */
:root {
  --scroll-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 35vh;
  --glow: #efb86f;
}

body {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(183, 131, 78, .055), transparent 280px),
    var(--paper);
}

.page-designer { background: var(--paper); }

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--glow), var(--olive));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(239, 184, 111, .45);
  pointer-events: none;
}

.hero,
.page-hero,
.section-ink,
.footer {
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.section-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 30px;
  z-index: 2;
  width: 1px;
  height: 76px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .78), transparent);
  animation: scroll-cue 2.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(239, 184, 111, .17), transparent 22%),
    linear-gradient(90deg, rgba(8, 9, 8, .9) 0%, rgba(8, 9, 8, .6) 45%, rgba(8, 9, 8, .18) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, .7), transparent 58%);
}

.hero-content > *,
.page-hero-content > * {
  animation: content-rise .8s cubic-bezier(.22, 1, .36, 1) both;
}

body.is-loading .hero-content > *,
body.is-loading .page-hero-content > * { animation-play-state: paused; }

.hero-content > :nth-child(2),
.page-hero-content > :nth-child(2) { animation-delay: 90ms; }
.hero-content > :nth-child(3),
.page-hero-content > :nth-child(3) { animation-delay: 170ms; }
.hero-content > :nth-child(4) { animation-delay: 250ms; }

.hero h1 {
  position: relative;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .35);
}

.hero h1::after {
  content: "";
  display: block;
  width: clamp(74px, 11vw, 150px);
  height: 5px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--glow), var(--copper-dark));
  transform-origin: left;
  animation: line-grow .9s .38s cubic-bezier(.22, 1, .36, 1) both;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  transition: left .58s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after { left: 118%; }

.trust-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #11120f, #1c211c 58%, #11120f);
}

.trust-grid { counter-reset: trust; }

.trust-grid p {
  position: relative;
  overflow: hidden;
  counter-increment: trust;
  transition: background .25s ease, transform .25s ease;
}

.trust-grid p::before {
  content: "0" counter(trust);
  display: block;
  margin-bottom: 12px;
  color: var(--glow);
  font-family: "Sora", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.trust-grid p::after {
  content: "";
  position: absolute;
  inset: auto -30% -70% 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(239, 184, 111, .12);
  filter: blur(18px);
  transition: transform .35s ease;
}

.trust-grid p:hover { background: rgba(255, 255, 255, .045); }
.trust-grid p:hover::after { transform: translate(-18%, -18%) scale(1.15); }

.section-heading h2,
.compact-heading h2 {
  position: relative;
}

.section-heading h2::after,
.compact-heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--copper), var(--olive));
}

.access-card::before {
  content: "";
  position: absolute;
  inset: -45% -65%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .2) 49%, transparent 56%);
  transform: translateX(-45%);
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.access-card img,
.story-gallery img,
.feature-image img,
.craft-visual img {
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.access-card:hover::before,
.access-card:focus-visible::before { transform: translateX(45%); }
.access-card:hover img,
.access-card:focus-visible img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
.story-gallery figure:hover img,
.feature-image:hover img,
.craft-visual:hover img { transform: scale(1.035); }

.product-card {
  position: relative;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--copper), var(--glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.product-card:hover::before,
.product-card:focus-within::before { transform: scaleX(1); }

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 131, 78, .55) 12%, rgba(183, 131, 78, .55) 88%, transparent);
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(222, 215, 202, .78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .1);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.process-list li:hover {
  transform: translateY(-7px);
  border-color: rgba(183, 131, 78, .55);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .16);
}

.process-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 44px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), #253e34);
  box-shadow: 0 8px 22px rgba(62, 95, 82, .28);
  font-family: "Sora", sans-serif;
  font-size: .72rem;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.process-list p { color: #625f58; }

.testimonial { transition: transform .3s ease, box-shadow .3s ease; }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 18px;
  color: rgba(183, 131, 78, .14);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 1;
}

.final-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, .72), transparent 280px),
    radial-gradient(circle at 95% 20%, rgba(183, 131, 78, .22), transparent 35%),
    #ebe6da;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -82%;
  z-index: -1;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(135, 91, 49, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(135, 91, 49, .06), 0 0 0 58px rgba(135, 91, 49, .035);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -8%;
  z-index: 0;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 184, 111, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(239, 184, 111, .035), 0 0 0 140px rgba(239, 184, 111, .02);
  animation: orbit-breathe 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero-grid > img { animation: product-hover 4.8s ease-in-out infinite; }

.catalog-toolbar,
.contact-form-page,
.faq-index,
.designer-guide {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .88);
}

.contact-options a { position: relative; padding-right: 52px; }
.contact-options a::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--olive);
  background: var(--mist);
  transform: translateY(-50%);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.contact-options a:hover::after,
.contact-options a:focus-visible::after {
  color: #fff;
  background: var(--olive);
  transform: translate(3px, calc(-50% - 3px));
}

.faq-groups details { transition: background .25s ease, padding .25s ease, border-color .25s ease; }
.faq-groups details[open] {
  padding-inline: 18px;
  border-color: rgba(183, 131, 78, .4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}
.faq-groups details[open] p { animation: answer-in .32s ease both; }

.designer-preview .designer-canonical-scene { animation: none; }
.designer-preview .designer-canonical-scene.is-entering { animation: designer-scene-in .72s cubic-bezier(.22, 1, .36, 1) both; }
.designer-preview.is-interacting .designer-canonical-scene,
.designer-preview.is-interacting .designer-selection-ui,
.designer-preview.is-interacting [data-object-id] {
  animation: none !important;
  transition: none !important;
}
.designer-preview.is-interacting [data-object-id] { cursor: grabbing; }
.designer-is-dragging,
.designer-is-dragging * { cursor: grabbing !important; user-select: none !important; }

.js .access-card[data-reveal].is-visible {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.js .product-card[data-reveal].is-visible {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
}

.js .product-card[data-reveal].is-visible:hover,
.js .product-card[data-reveal].is-visible.is-tilting {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.js .testimonial[data-reveal].is-visible:hover,
.js .process-list li[data-reveal].is-visible:hover { transform: translateY(-7px); }

@keyframes content-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scroll-cue {
  0%, 100% { opacity: .25; transform: translateY(-8px) scaleY(.7); }
  50% { opacity: 1; transform: translateY(8px) scaleY(1); }
}

@keyframes product-hover {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes orbit-breathe {
  from { transform: scale(.94) rotate(0); opacity: .55; }
  to { transform: scale(1.04) rotate(8deg); opacity: 1; }
}

@keyframes answer-in {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list::before { display: none; }
  .process-list li { min-height: 200px; }
  .process-list li > span { margin-bottom: 28px; }
}

@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; }
  .trust-grid p::before { margin-bottom: 7px; }
  .hero::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .page-hero-content > *,
  .hero h1::after,
  .page-hero::after,
  .page-hero-grid > img,
  .designer-preview .designer-canonical-scene.is-entering,
  .faq-groups details[open] p {
    animation: none !important;
  }

  .access-card img,
  .story-gallery img,
  .feature-image img,
  .craft-visual img { transition: none; }

  .js .access-card[data-reveal].is-visible,
  .js .product-card[data-reveal].is-visible,
  .js .product-card[data-reveal].is-visible:hover,
  .js .product-card[data-reveal].is-visible.is-tilting,
  .js .testimonial[data-reveal].is-visible:hover,
  .js .process-list li[data-reveal].is-visible:hover { transform: none; }
}

/* 2026-09 finishing pass: identity, complete product framing and touch editor */
.site-intro {
  overflow: hidden;
  animation-duration: 1.35s;
}

.site-intro::before,
.site-intro::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(239, 184, 111, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-intro::before {
  width: min(72vw, 560px);
  aspect-ratio: 1;
  box-shadow: 0 0 0 48px rgba(239, 184, 111, .035), 0 0 0 96px rgba(239, 184, 111, .018);
  animation: intro-orbit 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

.site-intro::after {
  width: min(42vw, 310px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: intro-orbit 1.4s reverse linear both;
}

.site-intro__mark {
  width: clamp(118px, 18vw, 164px);
  border-radius: 28px;
  animation: intro-mark-in .92s cubic-bezier(.22, 1, .36, 1) both;
}

.site-intro__mark::after {
  content: "";
  position: absolute;
  inset: -30% -55%;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 220, 167, .18) 48%, #ffd18d 50%, rgba(255, 220, 167, .18) 52%, transparent 58%);
  filter: drop-shadow(0 0 12px rgba(255, 191, 101, .8));
  animation: intro-laser-sweep .9s .14s cubic-bezier(.65, 0, .35, 1) both;
}

.site-intro__mark img {
  object-fit: contain;
  transform: scale(.9);
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 18px 24px rgba(0, 0, 0, .36));
}

.site-intro > p,
.site-intro > span {
  position: relative;
  z-index: 2;
  animation: intro-copy-in .58s .3s cubic-bezier(.22, 1, .36, 1) both;
}

.site-intro > p {
  text-shadow: 0 10px 34px rgba(0, 0, 0, .55);
}

.site-intro.is-finished {
  display: none;
}

@keyframes intro-orbit {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.55) rotate(-28deg); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(10deg); }
}

@keyframes intro-copy-in {
  from { opacity: 0; transform: translateY(18px); letter-spacing: .3em; }
  to { opacity: 1; transform: translateY(0); }
}

.catalog-grid .product-media {
  aspect-ratio: 3 / 4;
  padding: clamp(18px, 2vw, 30px);
  background:
    radial-gradient(circle at 50% 38%, rgba(183, 131, 78, .11), transparent 46%),
    linear-gradient(180deg, #fff, #f5f1e8);
}

.catalog-grid .product-media img,
.catalog-grid .product-card:hover .product-media img,
.catalog-grid .product-card.is-tilting .product-media img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.examples-carousel {
  max-width: 820px;
}

.examples-carousel .carousel-track {
  height: clamp(560px, 72vw, 820px);
  aspect-ratio: auto;
}

.examples-carousel .example-card img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 3vw, 34px);
  object-fit: contain;
  object-position: center;
}

.designer-preview-card {
  position: relative;
}

.designer-selection-menu {
  display: none;
}

.designer-selection-menu[hidden] {
  display: none !important;
}

.designer-hit-area {
  cursor: grab;
}

@media (max-width: 900px) {
  .designer-selection-menu:not([hidden]) {
    position: absolute;
    right: 24px;
    bottom: 82px;
    left: 24px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 9px 10px 9px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 18, 15, .9);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    backdrop-filter: blur(16px);
  }

  .designer-selection-menu span {
    overflow: hidden;
    font-size: .84rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .designer-selection-menu button {
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: #a83b30;
    font-weight: 850;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 9px;
  }

  .brand .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: .98rem;
  }

  .catalog-grid .product-media {
    aspect-ratio: 4 / 5;
    padding: 22px;
  }

  .examples-carousel .carousel-track {
    height: min(680px, 126vw);
    min-height: 510px;
  }

  .examples-carousel .example-card img {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro::before,
  .site-intro::after,
  .site-intro__mark,
  .site-intro__mark::after,
  .site-intro > p,
  .site-intro > span {
    animation: none !important;
  }
}
