/* Package comparison and individual sample brands. All media stays local. */
.pricing-section {
  padding: 100px 0 64px;
  scroll-margin-top: 100px;
}
.pricing-heading,
.demo-showcase .section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}
.pricing-heading h2,
.demo-showcase h2 {
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 14px 0 0;
}
.pricing-heading h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #536c48;
}
.pricing-heading > p,
.demo-showcase .section-heading > p {
  max-width: 330px;
  line-height: 1.7;
  color: #52615a;
}
.pricing-controls {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.billing-switch,
.tier-tabs {
  display: flex;
  padding: 5px;
  border: 1px solid #d9dfd6;
  border-radius: 16px;
  background: #fff;
  gap: 5px;
}
.billing-switch button {
  padding: 12px 22px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #3f5148;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.billing-switch button[aria-pressed="true"] {
  background: #203f32;
  color: #fff;
}
.billing-switch button span {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  background: #d9f5a7;
  color: #24412e;
  border-radius: 6px;
  font-size: 11px;
}
.commitment-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}
.commitment-toggle input {
  accent-color: #234e38;
  width: 19px;
  height: 19px;
}
.commitment-toggle b {
  display: block;
  color: #345c33;
  margin-top: 2px;
}
.price-demo-note {
  font-size: 12px;
  color: #56615b;
  margin: 18px 0 36px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #dbdfd4;
  border-radius: 25px;
  padding: 27px;
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  min-width: 0;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px #173b2a14;
}
.price-card.silber {
  background: #eff4e6;
  border: 2px solid #486342;
  box-shadow: 0 16px 36px #283e2512;
}
.price-card.gold {
  background: #243029;
  color: #fff8e6;
  border-color: #243029;
}
.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-card-top > span:last-child {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c6256;
}
.price-card.gold .price-card-top > span:last-child {
  color: #d7cdb8;
}
.package-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 750;
  text-transform: uppercase;
  display: inline-flex;
  padding: 8px 11px;
  background: #f1e3d2;
  color: #6a4628;
  border-radius: 8px;
}
.silber .package-label,
.showcase-silber .package-label {
  color: #27492c;
  background: #d8ecb8;
}
.gold .package-label {
  color: #eedaac;
  background: #465044;
}
.recommendation {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border-radius: 20px;
  background: #37532f;
  color: #fff;
}
.package-graphic {
  position: relative;
  height: 178px;
  margin: 24px -2px 20px;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse, #f4dfc1, transparent 68%);
}
.package-graphic.silber {
  background: radial-gradient(ellipse, #d2e6ab, transparent 68%);
}
.package-graphic.gold {
  background: radial-gradient(ellipse, #8e7a45a8, transparent 70%);
}
.package-window {
  width: 78%;
  height: 138px;
  position: relative;
  z-index: 1;
  background: #fffaf1;
  border: 1px solid #c6baa3;
  border-radius: 10px;
  box-shadow: 8px 14px 0 #88704415;
  transform: rotate(-5deg);
  transition: transform 0.35s;
}
.silber .package-window {
  transform: rotate(3deg);
  background: #fcfff7;
}
.gold .package-window {
  transform: rotate(-3deg);
  background: #ede4ce;
  border-color: #decba1;
}
.price-card:hover .package-window {
  transform: rotate(0) translateY(-3px);
}
.package-window-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #ddd6c7;
  padding: 9px;
}
.package-window-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #aaa08c;
}
.package-window-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 17px;
  gap: 14px;
  align-items: center;
}
.package-lines b,
.package-lines span {
  display: block;
  border-radius: 8px;
  background: #6f765f;
  height: 7px;
  margin-bottom: 6px;
  width: 90%;
}
.package-lines b:nth-child(2) {
  width: 64%;
}
.package-lines span {
  height: 3px;
  background: #cecbb9;
  margin-top: 12px;
}
.package-lines span:last-child {
  margin-top: 0;
  width: 73%;
}
.package-art {
  display: grid;
  place-items: center;
  height: 58px;
  background: #e7d1b0;
  border-radius: 22px 22px 5px 5px;
  color: #795338;
}
.package-art .line-icon {
  width: 30px;
  height: 30px;
}
.silber .package-art {
  background: #d1e4ae;
  color: #3e6037;
  border-radius: 50%;
}
.gold .package-art {
  background: #d9c289;
  color: #4f482f;
  border-radius: 4px;
}
.package-floating {
  z-index: 2;
  position: absolute;
  bottom: 6px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 650;
  padding: 12px 15px;
  background: #fff;
  color: #324737;
  border-radius: 9px;
  box-shadow: 0 8px 22px #2b372b14;
  animation: package-float 5s ease-in-out infinite;
}
.package-floating .line-icon {
  width: 16px;
  height: 16px;
}
.package-mini-tabs {
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: 10px;
  left: 18px;
}
.package-mini-tabs i {
  width: 21px;
  height: 4px;
  background: #91a173;
  border-radius: 4px;
}
.gold .package-mini-tabs i {
  background: #a58c52;
}
.price-card h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: inherit;
}
.package-intro {
  color: #556057;
  font-size: 13px;
  line-height: 1.6;
  min-height: 42px;
  margin: 0 0 22px;
}
.gold .package-intro {
  color: #dedcca;
}
.package-price {
  display: flex;
  gap: 9px;
  align-items: center;
}
.package-price strong {
  font-size: clamp(33px, 3.4vw, 49px);
  letter-spacing: -0.07em;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
}
.package-price > span {
  font-size: 10px;
  line-height: 1.6;
  color: #576251;
}
.gold .package-price > span {
  color: #ddd6c3;
}
.billing-detail {
  font-size: 12px;
  color: #586052;
  margin: 9px 0 16px;
}
.gold .billing-detail {
  color: #ddd6c3;
}
.setup-price {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid #d4dac9;
  border-bottom: 1px solid #d4dac9;
  min-height: 64px;
}
.setup-price span {
  display: block;
  color: #586052;
}
.gold .setup-price {
  border-color: #52604e;
}
.gold .setup-price span {
  color: #ddd6c3;
}
.package-features {
  padding: 22px 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 12px;
  line-height: 1.6;
}
.package-features li {
  display: flex;
  gap: 9px;
  align-items: start;
}
.package-features .line-icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #536c36;
}
.gold .package-features .line-icon {
  color: #dace94;
}
.package-cta {
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  font-size: 12px !important;
  justify-content: space-between;
}
.gold .package-cta {
  background: #e8d69d;
  color: #233226;
  border-color: #e8d69d;
}
.package-caption {
  font-size: 10px;
  text-align: center;
  display: block;
  margin-top: 11px;
  color: #596151;
}
.gold .package-caption {
  color: #d3d3bd;
}
.price-common {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 29px 0;
  color: #506147;
  font-size: 12px;
}
.price-common > span {
  display: flex;
  gap: 7px;
  align-items: center;
}
.price-common .line-icon {
  width: 16px;
  height: 16px;
}
.price-details {
  border-top: 1px solid #d6ddcf;
  border-bottom: 1px solid #d6ddcf;
  padding: 20px 0;
}
.price-details summary {
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  list-style-position: inside;
}
.price-details > div {
  max-width: 850px;
  color: #526050;
  font-size: 13px;
  line-height: 1.8;
  padding: 14px 0 0;
}
.pricing-page-intro {
  padding-top: 25px;
}
.pricing-page-intro h1 {
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.06em;
  max-width: 760px;
  margin: 25px 0 15px;
}
.pricing-page .pricing-section {
  padding-top: 40px;
}
.pricing-page .pricing-heading h2 {
  font-size: 36px;
}
.pricing-page .pricing-heading {
  display: none;
}
.demo-showcase {
  margin: 80px 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.showcase-card {
  overflow: hidden;
  background: #f0e7d9;
  border: 1px solid #e1d6c3;
  border-radius: 27px;
  padding: 32px 32px 0;
  text-decoration: none;
  color: #3b4432;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px #153a2418;
}
.showcase-silber {
  background: #273d31;
  border-color: #273d31;
  color: #f8faed;
}
.showcase-card h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  margin: 22px 0 12px;
  color: inherit;
}
.showcase-card p {
  font-size: 13px;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 27px;
}
.showcase-art {
  height: 255px;
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #fffcf6;
  box-shadow: 0 5px 32px #12291c19;
  margin-top: auto;
  transition: transform 0.4s;
  flex-shrink: 0;
}
.showcase-bronze .showcase-art {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 22px;
  gap: 20px;
}
.showcase-art img {
  object-fit: cover;
  width: 48%;
  height: 190px;
  border-radius: 75px 75px 7px 7px;
}
.showcase-art > span {
  display: block;
  font-size: 11px;
  flex: 1;
  color: #334831;
}
.showcase-art b {
  font:
    28px/1.1 Georgia,
    serif;
  display: block;
  margin: 24px 0;
}
.showcase-art i {
  font-style: normal;
  font-size: 8px;
  display: block;
}
.showcase-silber .showcase-art {
  background: #edf1e4;
  display: flex;
  align-items: center;
}
.showcase-silber .showcase-art > img {
  width: 62%;
  height: 100%;
  border-radius: 0;
  position: absolute;
  right: 0;
}
.showcase-silber .showcase-art > span {
  z-index: 1;
  padding: 25px;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #edf1e4 30%, #edf1e4b3 72%, transparent);
  flex: none;
  font-size: 9px;
}
.showcase-silber .showcase-art b {
  font-size: 34px;
  margin: 30px 0 20px;
}
.showcase-tool {
  position: absolute;
  bottom: 15px;
  right: 12px;
  border-radius: 7px;
  padding: 10px 12px;
  background: #d9f5a7;
  color: #284231;
  font-size: 10px;
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 2;
}
.showcase-tool .line-icon {
  width: 15px;
  height: 15px;
}
.showcase-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 600;
}
.showcase-link .line-icon {
  width: 20px;
}
.art-disclosure {
  font-size: 11px;
  color: #596457;
  line-height: 1.7;
  margin: 16px 0;
}
.scene-real-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Package switching stays visible and preserves the shared tab state. */
.tier-switcher {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
}
.tier-switcher > div:first-child {
  display: grid;
  gap: 7px;
}
.tier-switcher .eyebrow {
  font-size: 9px;
}
.tier-switcher b {
  font-size: 14px;
  font-weight: 600;
}
.tier-tabs button {
  border: 0;
  background: transparent;
  border-radius: 11px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  color: #405445;
  font-weight: 650;
  text-align: left;
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 8px;
  align-items: center;
}
.tier-tabs button small {
  grid-column: 2;
  font-size: 9px;
  font-weight: 400;
  margin-top: 5px;
}
.tier-tabs button[aria-pressed="true"] {
  background: #244333;
  color: #fff;
}
.tier-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #e3b887;
}
.tier-dot.silber {
  background: #d7eaa9;
}
.tier-switcher > .text-button {
  font-size: 11px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.tier-switcher > .text-button .line-icon {
  width: 16px;
}
/* Individual, editorial website designs. */
.designed-site {
  --brand-bg: #f7f2e7;
  --brand-ink: #354a32;
  --brand-soft: #e9e5d5;
  --brand-accent: #496342;
  --brand-btn: #354c33;
  background: var(--brand-bg) !important;
  color: var(--brand-ink);
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.designed-site.brand-dj {
  --brand-bg: #211d34;
  --brand-ink: #faf4fc;
  --brand-soft: #342e4c;
  --brand-accent: #e2c0ff;
  --brand-btn: #7747a0;
}
.designed-site.brand-musik {
  --brand-bg: #f5eee2;
  --brand-ink: #493052;
  --brand-soft: #e9dcdf;
  --brand-accent: #704478;
  --brand-btn: #663d6b;
}
.designed-site.brand-rede {
  --brand-bg: #fbefed;
  --brand-ink: #703d40;
  --brand-soft: #f0ddda;
  --brand-accent: #8d454c;
  --brand-btn: #7c4248;
}
.designed-site.brand-massage {
  --brand-bg: #f1f0e7;
  --brand-ink: #3d5649;
  --brand-soft: #e0e5d8;
  --brand-accent: #476354;
  --brand-btn: #3f5f4c;
}
.designed-site.brand-tattoo {
  --brand-bg: #eeeae2;
  --brand-ink: #262626;
  --brand-soft: #ddd9d0;
  --brand-accent: #333;
  --brand-btn: #292929;
}
.designed-site.brand-piercing {
  --brand-bg: #eaeef0;
  --brand-ink: #303d4b;
  --brand-soft: #d9e0e5;
  --brand-accent: #3c566a;
  --brand-btn: #314759;
}
.designed-site.brand-haar {
  --brand-bg: #f6e5d5;
  --brand-ink: #253d70;
  --brand-soft: #edcdb8;
  --brand-accent: #334f89;
  --brand-btn: #294373;
}
.designed-site .site-nav {
  padding: 27px 42px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-ink) 16%, transparent);
  background: transparent;
  gap: 24px;
}
.designed-site .site-name {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-ink);
  font:
    600 25px Georgia,
    serif;
  letter-spacing: -0.035em;
  flex: none;
  text-decoration: none;
}
.site-logo-symbol {
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.site-logo-symbol .line-icon {
  width: 20px;
  height: 20px;
}
.designed-site .site-logo-dot {
  font: inherit;
  margin-left: -9px;
}
.sample-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 11px;
}
.sample-nav a {
  color: var(--brand-ink);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.sample-nav a[aria-current="page"] {
  border-bottom-color: var(--brand-ink);
}
.sample-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 11px inherit;
  font-family: inherit;
  font-size: 11px;
  padding: 12px 15px;
  border: 1px solid color-mix(in srgb, var(--brand-ink) 35%, transparent);
  color: var(--brand-ink);
  background: transparent;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
}
.sample-contact .line-icon {
  width: 15px;
  height: 15px;
}
.designed-site .editorial-hero {
  padding: 60px 42px 56px;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.designed-site .editorial-copy {
  position: relative;
  z-index: 1;
}
.designed-site .eyebrow {
  color: var(--brand-accent);
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
.designed-site .editorial-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.5vw, 65px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--brand-ink);
  margin: 24px 0;
}
.designed-site h1 em {
  font-weight: 400;
  color: var(--brand-accent);
}
.designed-site .editorial-copy > p {
  color: var(--brand-ink);
  opacity: 0.87;
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
}
.designed-site .btn {
  background: var(--brand-btn);
  border-color: var(--brand-btn);
  color: #fff;
  box-shadow: none;
  font-size: 12px;
}
.designed-site .btn.secondary {
  background: transparent;
  border-color: var(--brand-btn);
  color: var(--brand-ink);
}
.designed-site .actions {
  gap: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 27px;
}
.sample-text-link {
  font-size: 11px;
  color: var(--brand-ink);
  text-underline-offset: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sample-text-link .line-icon {
  width: 16px;
}
.hero-personal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 10px;
  line-height: 1.5;
}
.hero-personal > span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
}
.hero-personal .line-icon {
  width: 12px;
  height: 12px;
}
.designed-site .editorial-image {
  margin: 0;
  height: 440px;
  display: block;
  position: relative;
  background: var(--brand-soft);
  border-radius: 8px 120px 8px 8px;
  overflow: visible;
  isolation: auto;
}
.designed-site .editorial-image:before,
.designed-site .editorial-image:after {
  display: none;
}
.designed-site .editorial-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
  border-radius: inherit;
  z-index: auto;
}
.editorial-image figcaption {
  position: absolute;
  bottom: 13px;
  left: 13px;
  right: 13px;
  width: fit-content;
  padding: 7px 10px;
  color: #fff;
  background: #192a24dc;
  border-radius: 5px;
  font-size: 9px;
  line-height: 1.4;
}
.image-stamp {
  position: absolute;
  left: -33px;
  top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-ink);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 5px 20px #14281912;
  transform: rotate(-12deg);
  animation: stamp-sway 7s ease-in-out infinite;
}
.image-stamp .line-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
}
.image-stamp b {
  font-size: 12px;
  font-weight: 600;
}
.image-stamp i {
  font:
    9px Georgia,
    serif;
  margin-top: 4px;
}
.brand-values {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 42px;
  padding: 24px 0;
  border-top: 1px solid color-mix(in srgb, var(--brand-ink) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-ink) 18%, transparent);
  font-size: 11px;
}
.brand-values > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-values small {
  font-size: 9px;
  color: var(--brand-accent);
}
.designed-site .site-services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 40px 42px;
  background: transparent;
  border: 0;
  color: var(--brand-ink);
}
.designed-site .site-services h2 {
  font:
    32px/1.2 Georgia,
    serif;
  color: var(--brand-ink);
  margin: 10px 0;
}
.designed-site .site-services p,
.designed-site .site-services small {
  color: var(--brand-ink);
  font-size: 11px;
  line-height: 1.7;
}
.designed-site .site-services .price {
  font:
    40px Georgia,
    serif;
  color: var(--brand-ink);
}
.brand-story {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 50px;
  padding: 52px 42px;
  background: var(--brand-soft);
  align-items: center;
}
.story-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.story-number > .line-icon {
  width: 100px;
  height: 100px;
  stroke-width: 0.7;
}
.story-number > span {
  font:
    italic 24px/1.3 Georgia,
    serif;
}
.brand-story h2 {
  font:
    36px/1.15 Georgia,
    serif;
  letter-spacing: -0.035em;
  color: var(--brand-ink);
  margin: 13px 0;
}
.brand-story p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--brand-ink);
}
.designed-site .booking-area {
  background: #fffdf7;
  color: #263e30;
  padding: 48px 42px;
}
.designed-site .booking-area .eyebrow {
  color: #48603d;
}
.designed-site .booking-area h2 {
  color: #263e30;
}
.designed-site .booking-area .btn {
  background: var(--brand-btn);
  color: white;
}
.designed-site .booking-area p {
  color: #596354;
}
.designed-site .site-footer {
  padding: 28px 42px;
  color: var(--brand-ink);
  background: var(--brand-bg);
  display: block;
  border-top: 1px solid color-mix(in srgb, var(--brand-ink) 16%, transparent);
}
.site-footer > b {
  font:
    25px Georgia,
    serif;
}
.designed-site .site-footer > p {
  font-size: 10px;
  margin: 12px 0;
  color: var(--brand-ink);
}
.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 10px;
}
.designed-site .site-footer a,
.designed-site .site-footer .text-button {
  font-size: 10px;
  color: var(--brand-ink);
}
.site-footer > div > span {
  margin-left: auto;
  font-style: italic;
}
.tier-bronze .editorial-hero {
  grid-template-columns: 1.1fr 0.8fr;
  min-height: 470px;
  gap: 50px;
}
.designed-site.tier-bronze .editorial-image {
  height: 335px;
  border-radius: 140px 140px 12px 12px;
  max-width: 350px;
  justify-self: center;
  width: 100%;
}
.designed-site.tier-bronze .editorial-hero h1 {
  font-size: clamp(35px, 4vw, 53px);
}
.tier-bronze .brand-values {
  font-size: 10px;
}
.tier-silber.brand-dj .editorial-hero h1,
.tier-silber.brand-haar .editorial-hero h1,
.tier-silber.brand-tattoo .editorial-hero h1 {
  font-family: Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
}
.tier-silber.brand-dj .editorial-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: #ddf58e;
}
.tier-silber.brand-dj .editorial-image {
  border-radius: 10px;
  transform: rotate(2deg);
}
.brand-dj .image-stamp {
  background: #dff19e;
  color: #2d3431;
}
.tier-silber.brand-musik .editorial-image {
  border-radius: 160px 160px 10px 10px;
}
.tier-silber.brand-rede .editorial-image {
  border-radius: 180px 180px 6px 6px;
}
.tier-silber.brand-massage .editorial-image {
  border-radius: 180px 8px 180px 8px;
}
.tier-silber.brand-tattoo .editorial-image {
  border-radius: 0;
  filter: grayscale(1);
}
.tier-silber.brand-piercing .editorial-image {
  border-radius: 50% 50% 10px 10px;
}
.tier-silber.brand-haar .editorial-image {
  border-radius: 100px 8px 8px 100px;
}
.tier-silber.brand-haar h1 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.about-page,
.portfolio-page {
  padding: 52px 42px;
}
.designed-site .about-page h1,
.designed-site .portfolio-page h1 {
  font:
    clamp(36px, 4.8vw, 65px) / 1.1 Georgia,
    serif;
  color: var(--brand-ink);
  letter-spacing: -0.05em;
  margin: 20px 0 32px;
  max-width: 800px;
}
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 55px;
  align-items: center;
}
.about-illustration {
  position: relative;
}
.about-illustration img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 5px 100px 5px 5px;
}
.about-illustration > span {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}
.about-layout h2 {
  font:
    32px/1.2 Georgia,
    serif;
  color: var(--brand-ink);
}
.about-layout p,
.portfolio-page > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--brand-ink);
}
.about-signature {
  font:
    italic 29px Georgia,
    serif;
  margin: 22px 0;
}
.about-layout dl > div {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid color-mix(in srgb, var(--brand-ink) 20%, transparent);
  font-size: 12px;
}
.about-layout dt {
  flex: none;
}
.about-layout dd {
  margin: 0;
  text-align: right;
}
.about-layout .btn {
  margin-top: 14px;
}
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.portfolio-filter button {
  border: 1px solid #cbd2c5;
  background: #fffdf7;
  border-radius: 30px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  color: #324c37;
}
.portfolio-filter button[aria-pressed="true"] {
  background: #354d36;
  border-color: #354d36;
  color: white;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}
.portfolio-item {
  min-width: 0;
  animation: picture-arrive 0.35s ease-out;
}
.portfolio-open {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 11px;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
}
.portfolio-open img {
  display: block;
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform 0.6s;
}
.portfolio-open:hover img {
  transform: scale(1.04);
}
.portfolio-open > span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 32px;
  height: 32px;
  background: #fffef7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #374c34;
}
.portfolio-open > span .line-icon {
  width: 16px;
}
.portfolio-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: 17px;
}
.portfolio-caption small {
  font-size: 8px;
  letter-spacing: 0.07em;
}
.portfolio-caption h3 {
  font-size: 14px;
  letter-spacing: -0.02em;
  margin: 7px 0;
  color: inherit;
}
.favorite-button {
  border: 1px solid #bec9b6;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  background: #fffdf5;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  color: #385333;
}
.favorite-button[aria-pressed="true"] {
  background: #d9efa9;
  border-color: #aac87b;
}
.favorite-button .line-icon {
  width: 15px;
  height: 15px;
}
.designed-site .art-disclosure {
  color: var(--brand-ink);
}
.lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.picture-preview p {
  font-size: 12px;
  line-height: 1.7;
}
/* Office: a smaller, calmer switch; useful tools with real tab-only interactions. */
.office-package-switch .tier-switcher {
  padding: 0 0 22px;
  gap: 15px;
}
.office-package-switch .tier-switcher > div:first-child {
  display: none;
}
.office-package-switch .tier-tabs {
  border-radius: 12px;
}
.office-package-switch .tier-tabs button {
  padding: 8px 15px;
  font-size: 11px;
}
.office-package-switch .tier-tabs small {
  display: none;
}
.office-tier {
  display: block;
  font-size: 10px !important;
  color: #606b5b;
}
.basic-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}
.basic-overview > a {
  background: #fffdf8;
  border: 1px solid #dedfd4;
  border-radius: 20px;
  padding: 26px;
  color: #334c35;
  text-decoration: none;
  transition: transform 0.25s;
}
.basic-overview > a:hover {
  transform: translateY(-3px);
}
.basic-overview > a > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.basic-overview .line-icon {
  width: 17px;
  height: 17px;
}
.basic-overview > a > b {
  font-size: 53px;
  letter-spacing: -0.05em;
  display: block;
  margin: 18px 0 8px;
  line-height: 1;
}
.basic-overview > a > p {
  font-size: 12px;
  line-height: 1.7;
  color: inherit;
}
.basic-overview .basic-website-card {
  background: #e7d8c0;
  border-color: #dccbad;
}
.basic-overview .basic-website-card > b {
  font:
    30px/1.12 Georgia,
    serif;
}
.simple-guide {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 11px;
  color: #526049;
  margin: 26px 0;
}
.module-counter {
  background: #e7efd9;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  color: #3c562f;
  margin-bottom: 22px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.module-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #dce2d5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.module-card.selected {
  background: #f1f5e9;
  border-color: #9bab89;
}
.module-icon {
  background: #e7ecd9;
  color: #466136;
  border-radius: 13px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.module-icon .line-icon {
  width: 22px;
  height: 22px;
}
.module-card h2 {
  font-size: 18px !important;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.module-card p {
  font-size: 12px;
  color: #53614d;
  line-height: 1.7;
  flex: 1;
}
.module-card .btn {
  font-size: 10px !important;
  padding: 11px 9px;
  justify-content: center;
  white-space: normal;
}
.module-card > a {
  font-size: 11px;
  margin-top: 15px;
}
.storage-summary {
  padding: 24px;
  background: #e8ecdf;
  border: 1px solid #dce2ce;
  border-radius: 20px;
  margin-bottom: 23px;
}
.storage-summary > span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}
.storage-summary .line-icon {
  width: 20px;
  flex: none;
}
.storage-summary b {
  display: block;
  margin: 14px 0;
  font-size: 12px;
}
.storage-summary p {
  font-size: 12px;
  margin: 0;
  color: #54604d;
}
.file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.file-card {
  border: 1px solid #d9dfd2;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: white;
  font-family: inherit;
  color: #354b32;
}
.file-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.file-card:hover img {
  filter: brightness(1.08);
}
.file-card > span {
  padding: 19px;
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.file-card .line-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
}
.file-card small {
  display: block;
  font-size: 10px;
  margin-top: 10px;
  font-weight: 400;
  color: #52614c;
}
.customer-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e3d9;
}
.customer-row:last-child {
  border-bottom: 0;
}
.customer-row > div {
  min-width: 0;
  flex: 1;
}
.customer-row b {
  font-size: 14px;
}
.customer-row p {
  font-size: 12px;
  overflow-wrap: anywhere;
  margin: 7px 0 0;
  color: #53604b;
}
.customer-row > span:last-child {
  font-size: 11px;
  color: #53604b;
  flex: none;
}
.selection-count {
  font-size: 13px;
  color: #47603b;
}
.reading-width {
  max-width: 750px;
}
.locked-feature {
  text-align: center;
  max-width: 680px;
  margin: 25px auto;
  padding: 48px;
}
.locked-feature > .line-icon {
  width: 48px;
  height: 48px;
  color: #5d7645;
  margin-bottom: 20px;
}
.locked-feature h1 {
  font-size: 32px;
  margin: 18px 0;
}
.locked-feature p {
  font-size: 14px;
  line-height: 1.8;
}
.locked-feature .btn {
  margin: 15px 0;
}
.locked-feature > .text-button {
  display: block;
}
.gold-dialog-lead {
  font:
    32px Georgia,
    serif;
}
.premium-details {
  display: grid;
  gap: 12px;
}
@keyframes package-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes stamp-sway {
  0%,
  100% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(-6deg);
  }
}
@keyframes picture-arrive {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.motion-paused .package-floating,
body.motion-paused .image-stamp {
  animation-play-state: paused;
}
body.motion-paused .portfolio-item {
  animation: none;
}
@media (min-width: 1450px) {
  .designed-site .editorial-hero h1 {
    font-size: 65px;
  }
}
@media (max-width: 1050px) {
  .price-card {
    padding: 22px;
  }
  .price-card h3 {
    font-size: 22px;
  }
  .package-price strong {
    font-size: 39px;
  }
  .package-graphic {
    height: 155px;
  }
  .package-window {
    height: 126px;
  }
  .package-features {
    font-size: 11px;
  }
  .designed-site .site-nav {
    padding: 24px;
  }
  .sample-nav {
    gap: 14px;
  }
  .designed-site .site-name {
    font-size: 23px;
  }
  .designed-site .editorial-hero {
    padding: 42px 28px;
    gap: 25px;
  }
  .designed-site .editorial-image {
    height: 370px;
  }
  .designed-site .editorial-hero h1 {
    font-size: 46px;
  }
  .tier-switcher {
    flex-wrap: wrap;
  }
  .tier-switcher > div:first-child {
    flex: 1;
  }
  .tier-switcher > .text-button {
    margin-left: auto;
  }
  .brand-values {
    margin: 0 28px;
  }
  .brand-story,
  .about-page,
  .portfolio-page {
    padding: 42px 28px;
  }
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .office-package-switch .tier-switcher {
    flex-wrap: nowrap;
  }
  .showcase-art b {
    font-size: 25px;
  }
  .showcase-silber .showcase-art b {
    font-size: 29px;
  }
}
@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
    margin: auto;
  }
  .price-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
  }
  .price-card-top,
  .package-features,
  .package-cta,
  .package-caption {
    grid-column: 1/-1;
  }
  .package-graphic {
    grid-column: 2;
    grid-row: 2/6;
    height: 195px;
    margin: 15px 0;
    align-self: center;
  }
  .price-card h3 {
    grid-column: 1;
    margin-top: 24px;
    font-size: 26px;
  }
  .package-intro {
    grid-column: 1;
    margin: 0 0 15px;
    min-height: 0;
  }
  .package-price {
    grid-column: 1;
  }
  .package-price strong {
    font-size: 41px;
  }
  .billing-detail {
    grid-column: 1;
  }
  .setup-price {
    grid-column: 1/-1;
    min-height: 0;
  }
  .package-features {
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    gap: 12px 18px;
  }
  .pricing-heading,
  .demo-showcase .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .pricing-heading > p,
  .demo-showcase .section-heading > p {
    max-width: 100%;
    font-size: 14px;
    margin: 0;
  }
  .pricing-section {
    padding-top: 65px;
  }
  .pricing-controls {
    gap: 20px;
  }
  .showcase-grid {
    gap: 15px;
  }
  .showcase-card {
    padding: 22px 22px 0;
  }
  .showcase-art {
    height: 210px;
  }
  .showcase-bronze .showcase-art {
    padding: 15px;
    gap: 12px;
  }
  .showcase-art img {
    height: 160px;
  }
  .showcase-art b {
    font-size: 23px;
  }
  .showcase-silber .showcase-art > span {
    padding: 18px;
  }
  .showcase-silber .showcase-art b {
    font-size: 27px;
  }
  .showcase-tool {
    font-size: 8px;
    padding: 8px;
    right: 7px;
    bottom: 10px;
  }
  .designed-site .site-nav {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .sample-nav {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }
  .tier-bronze .site-nav {
    flex-direction: row;
    align-items: center;
  }
  .tier-bronze .sample-nav {
    width: auto;
  }
  .designed-site .editorial-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    gap: 25px;
  }
  .designed-site .editorial-hero h1 {
    font-size: 39px;
  }
  .designed-site .editorial-image {
    height: 350px;
  }
  .image-stamp {
    width: 80px;
    height: 80px;
    left: -20px;
    top: 30px;
  }
  .image-stamp b {
    font-size: 10px;
  }
  .image-stamp i {
    font-size: 8px;
  }
  .image-stamp .line-icon {
    width: 20px;
    height: 20px;
  }
  .designed-site .editorial-copy > p {
    font-size: 12px;
  }
  .designed-site .editorial-hero .btn {
    font-size: 10px;
    padding: 14px;
  }
  .hero-personal {
    font-size: 9px;
  }
  .brand-values {
    gap: 12px;
    font-size: 10px;
  }
  .brand-values > span {
    gap: 7px;
  }
  .brand-story {
    gap: 25px;
    grid-template-columns: 0.6fr 1fr;
  }
  .brand-story h2 {
    font-size: 29px;
  }
  .story-number > .line-icon {
    width: 75px;
    height: 75px;
  }
  .story-number > span {
    font-size: 20px;
  }
  .about-layout {
    gap: 25px;
  }
  .about-illustration img {
    height: 320px;
  }
  .about-layout h2 {
    font-size: 25px;
  }
  .portfolio-grid {
    gap: 13px;
  }
  .portfolio-open img {
    height: 200px;
  }
  .portfolio-caption h3 {
    font-size: 12px;
  }
  .portfolio-caption {
    gap: 5px;
  }
  .portfolio-caption small {
    font-size: 7px;
  }
  .file-card > span {
    padding: 14px;
    font-size: 11px;
  }
  .file-card img {
    height: 145px;
  }
  .basic-overview > a {
    padding: 20px;
  }
  .basic-overview .basic-website-card > b {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  .pricing-section {
    padding: 50px 0 35px;
  }
  .pricing-heading h2,
  .demo-showcase h2 {
    font-size: 38px;
  }
  .pricing-controls {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .billing-switch {
    width: fit-content;
    max-width: 100%;
  }
  .billing-switch button {
    padding: 11px 16px;
    font-size: 12px;
  }
  .commitment-toggle {
    font-size: 12px;
  }
  .commitment-toggle b {
    display: inline;
    margin-left: 6px;
  }
  .price-demo-note {
    font-size: 10px;
    margin-bottom: 32px;
  }
  .price-card {
    display: flex;
    padding: 26px;
  }
  .price-card h3 {
    margin-top: 0;
    font-size: 27px;
  }
  .package-graphic {
    height: 165px;
    width: 100%;
    margin: 20px 0;
    max-width: 300px;
    align-self: center;
  }
  .package-window {
    height: 135px;
    width: 72%;
  }
  .package-price strong {
    font-size: 50px;
  }
  .package-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .package-features {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 12px;
  }
  .setup-price {
    min-height: 0;
    padding: 13px 0;
  }
  .price-common {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 10px;
    align-items: start;
  }
  .price-common > span {
    align-items: start;
    gap: 5px;
  }
  .price-common .line-icon {
    flex: none;
    width: 14px;
    height: 14px;
  }
  .price-details summary {
    font-size: 11px;
    line-height: 1.6;
  }
  .price-details > div {
    font-size: 12px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .demo-showcase {
    margin: 55px 0;
  }
  .showcase-card {
    padding: 26px 26px 0;
  }
  .showcase-card h3 {
    font-size: 30px;
  }
  .showcase-card p {
    font-size: 12px;
  }
  .showcase-art {
    height: 230px;
  }
  .showcase-art img {
    height: 180px;
  }
  .showcase-art b {
    font-size: 29px;
  }
  .showcase-silber .showcase-art b {
    font-size: 33px;
  }
  .showcase-silber .showcase-art > span {
    padding: 22px;
  }
  .showcase-tool {
    font-size: 9px;
    padding: 10px;
  }
  .art-disclosure {
    font-size: 10px;
  }
  .tier-switcher {
    gap: 15px;
    padding: 8px 0 22px;
  }
  .tier-switcher > div:first-child {
    width: 100%;
    flex: none;
  }
  .tier-switcher b {
    font-size: 13px;
  }
  .tier-tabs {
    width: 100%;
    gap: 4px;
  }
  .tier-tabs button {
    flex: 1;
    padding: 11px 10px;
    font-size: 12px;
  }
  .tier-tabs button small {
    font-size: 8px;
  }
  .tier-switcher > .text-button {
    margin-left: 0;
    font-size: 10px;
  }
  .designed-site .site-nav {
    padding: 22px 20px;
  }
  .designed-site .site-name {
    font-size: 22px;
  }
  .site-logo-symbol {
    width: 30px;
    height: 30px;
  }
  .site-logo-symbol .line-icon {
    width: 17px;
    height: 17px;
  }
  .sample-nav {
    gap: 11px;
    flex-wrap: wrap;
    justify-content: start;
    font-size: 10px;
  }
  .sample-contact {
    margin-left: auto;
    padding: 9px 11px;
    font-size: 9px;
    gap: 5px;
  }
  .sample-contact .line-icon {
    width: 12px;
  }
  .tier-bronze .site-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .tier-bronze .sample-contact {
    font-size: 9px;
  }
  .designed-site .editorial-hero {
    grid-template-columns: 1fr;
    padding: 35px 23px 30px;
    gap: 32px;
  }
  .designed-site .editorial-hero h1,
  .designed-site.tier-bronze .editorial-hero h1 {
    font-size: 43px;
    margin: 20px 0;
    line-height: 1.05;
  }
  .designed-site .editorial-copy > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .designed-site .editorial-hero .btn {
    font-size: 11px;
    padding: 14px 17px;
  }
  .designed-site .actions {
    gap: 15px;
    margin-top: 24px;
  }
  .hero-personal {
    margin-top: 20px;
    font-size: 9px;
  }
  .designed-site .editorial-image {
    height: 330px;
    width: 100%;
    border-top-right-radius: 90px;
  }
  .image-stamp {
    left: -10px;
    top: 23px;
    width: 84px;
    height: 84px;
  }
  .designed-site.tier-bronze .editorial-image {
    height: 280px;
    width: 90%;
    border-radius: 125px 125px 8px 8px;
  }
  .tier-bronze .editorial-copy {
    text-align: center;
  }
  .tier-bronze .actions,
  .tier-bronze .hero-personal {
    justify-content: center;
  }
  .tier-bronze .editorial-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .brand-values {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 23px;
    gap: 15px;
    padding: 21px 0;
    font-size: 11px;
  }
  .brand-values > span {
    gap: 15px;
  }
  .designed-site .site-services {
    padding: 30px 23px;
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .designed-site .site-services h2 {
    font-size: 28px;
  }
  .designed-site .site-services .price {
    font-size: 35px;
  }
  .brand-story {
    grid-template-columns: 1fr;
    padding: 32px 23px;
    gap: 28px;
  }
  .story-number {
    flex-direction: row;
    justify-content: start;
    gap: 20px;
    text-align: left;
  }
  .story-number > .line-icon {
    width: 55px;
    height: 55px;
  }
  .story-number > span {
    font-size: 20px;
  }
  .brand-story h2 {
    font-size: 31px;
  }
  .brand-story p {
    font-size: 13px;
  }
  .designed-site .booking-area {
    padding: 33px 23px;
  }
  .designed-site .site-footer {
    padding: 25px 23px;
  }
  .site-footer > div {
    gap: 15px;
  }
  .site-footer > div > span {
    margin-left: 0;
    width: 100%;
  }
  .about-page,
  .portfolio-page {
    padding: 33px 23px;
  }
  .designed-site .about-page h1,
  .designed-site .portfolio-page h1 {
    font-size: 39px;
    margin: 18px 0 28px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-illustration img {
    height: 300px;
  }
  .about-layout h2 {
    font-size: 29px;
  }
  .about-layout p,
  .portfolio-page > p {
    font-size: 13px;
  }
  .portfolio-filter {
    gap: 7px;
    margin: 22px 0;
  }
  .portfolio-filter button {
    padding: 10px 12px;
    font-size: 10px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portfolio-open img {
    height: 280px;
  }
  .portfolio-caption h3 {
    font-size: 16px;
  }
  .portfolio-caption small {
    font-size: 9px;
  }
  .favorite-button {
    width: 36px;
    height: 36px;
  }
  .office-package-switch .tier-switcher {
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
  }
  .office-package-switch .tier-tabs {
    width: auto;
    flex: 1;
  }
  .office-package-switch .tier-tabs button {
    padding: 10px 14px;
  }
  .office-package-switch .tier-switcher > .text-button {
    font-size: 9px;
  }
  .basic-overview {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .basic-overview > a {
    padding: 18px;
  }
  .basic-overview > a > span {
    font-size: 9px;
    gap: 6px;
  }
  .basic-overview > a > b {
    font-size: 43px;
    margin: 16px 0 8px;
  }
  .basic-overview > a > p {
    font-size: 11px;
  }
  .basic-overview .basic-website-card {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
    align-items: center;
  }
  .basic-website-card > span {
    grid-column: 1/-1;
  }
  .basic-overview .basic-website-card > b {
    font-size: 28px;
  }
  .basic-website-card p {
    margin: 0;
  }
  .simple-guide {
    gap: 14px;
    font-size: 10px;
    display: grid;
  }
  .module-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .module-card {
    padding: 24px;
  }
  .module-card h2 {
    font-size: 21px !important;
  }
  .module-card .btn {
    font-size: 12px !important;
    padding: 13px;
  }
  .module-icon {
    margin-bottom: 15px;
  }
  .module-card p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .file-grid {
    grid-template-columns: 1fr;
  }
  .file-card img {
    height: 200px;
  }
  .file-card > span {
    font-size: 13px;
    padding: 18px;
  }
  .storage-summary {
    padding: 20px;
  }
  .storage-summary > span {
    font-size: 13px;
    line-height: 1.6;
  }
  .customer-row {
    gap: 10px;
    flex-wrap: wrap;
  }
  .customer-row > span:last-child {
    margin-left: 48px;
    width: 100%;
  }
  .customer-row b {
    font-size: 13px;
  }
  .customer-row p {
    font-size: 11px;
  }
  .locked-feature {
    padding: 28px 20px;
  }
  .locked-feature h1 {
    font-size: 28px;
  }
  .locked-feature p {
    font-size: 13px;
  }
  .locked-feature .btn {
    font-size: 11px;
  }
  .pricing-page-intro h1 {
    font-size: 38px;
  }
  .pricing-page-intro p {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .package-floating,
  .image-stamp,
  .portfolio-item {
    animation: none !important;
  }
  .price-card,
  .showcase-card,
  .package-window,
  .showcase-art,
  .portfolio-open img,
  .file-card img,
  .basic-overview > a {
    transition: none !important;
  }
  .price-card:hover,
  .showcase-card:hover,
  .basic-overview > a:hover {
    transform: none;
  }
}

.scene-portrait > small {
  color: #fff;
  background: #1d352be8;
  padding: 5px 7px;
  border-radius: 4px;
  bottom: 10px;
  letter-spacing: 0.08em;
}
.gold-dialog-art {
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  background: #25382d;
  color: #eaddad;
  border-radius: 16px;
  font:
    25px/1.25 Georgia,
    serif;
  margin: 10px 0 25px;
}
.gold-dialog-art > .line-icon {
  width: 50px;
  height: 50px;
  flex: none;
}
@media (max-width: 600px) {
  .customer-row > span:last-child {
    width: calc(100% - 48px);
  }
}

/* 0.5: transparent launch prices and a quiet, readable comparison. */
.early-bird {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 42px 48px;
  margin: 0 0 34px;
  background: #e9efd9;
  border: 1px solid #d4debe;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.early-bird-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 750;
  color: #3b512e;
}
.early-bird h3 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 17px 0;
  color: #223c2a;
}
.early-bird h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.early-bird-copy > p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 450px;
  color: #354831;
}
.early-bird-copy > small {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  color: #4f5a45;
  max-width: 440px;
  margin-top: 16px;
}
.bonus-example {
  background: #fffef8;
  border: 1px solid #d4ddc3;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px #354a2c0a;
  transform: rotate(1deg);
  transition: transform 0.3s;
}
.early-bird:hover .bonus-example {
  transform: rotate(0);
}
.bonus-example > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 750;
  color: #59654b;
}
.bonus-example > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}
.bonus-example b {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.bonus-example .bonus-deduction {
  color: #376325;
  padding-bottom: 20px;
  border-bottom: 1px dashed #bac7a8;
}
.bonus-example .bonus-result {
  align-items: end;
  color: #213c29;
}
.bonus-result > span {
  font-size: 13px;
  font-weight: 700;
}
.bonus-result small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 8px;
}
.bonus-result strong {
  font-size: clamp(28px, 3.5vw, 43px);
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
}
.bonus-example > p {
  color: #56634b;
  font-size: 11px;
  line-height: 1.8;
  margin: 22px 0 0;
}
.pricing-v5 .pricing-grid {
  gap: 20px;
}
.pricing-v5 .price-card {
  padding: 27px 25px;
  box-shadow: none;
}
.pricing-v5 .package-graphic {
  height: 142px;
  margin: 14px -2px 22px;
}
.pricing-v5 .package-window {
  transform: rotate(-3deg) scale(0.88);
}
.pricing-v5 .package-floating {
  font-size: 10px;
}
.pricing-v5 .package-intro {
  min-height: 44px;
  margin-bottom: 4px;
}
.pricing-v5 .price-reference {
  margin-top: 14px;
  font-size: 12px;
  color: #5b6456;
}
.pricing-v5 .package-price {
  margin-top: 10px;
}
.pricing-v5 .package-price strong {
  font-size: clamp(38px, 4vw, 52px);
  font-variant-numeric: tabular-nums;
}
.pricing-v5 .start-price-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 5px;
  background: #e3edcd;
  color: #344c27;
  margin-top: 10px;
}
.pricing-v5 .billing-detail {
  line-height: 1.7;
  margin: 10px 0 7px;
  min-height: 38px;
  font-size: 12px;
  color: #46563c;
}
.pricing-v5 .follow-price {
  font-size: 12px;
  line-height: 1.6;
  color: #55604f;
  padding-bottom: 15px;
  min-height: 42px;
  margin: 0;
}
.pricing-v5 .setup-price {
  min-height: 48px;
  line-height: 1.7;
  margin: 14px 0 0;
}
.pricing-v5 .package-features {
  padding: 12px 0;
  margin: 12px 0 20px;
  font-size: 13px;
}
.pricing-v5 .gold .price-reference,
.pricing-v5 .gold .follow-price,
.pricing-v5 .gold .billing-detail {
  color: #e1d8c5;
}
.pricing-v5 .gold .follow-price {
  border-color: #4f574c;
}
.pricing-v5 .gold .start-price-label {
  background: #4a553b;
  color: #fff0c6;
}
.price-footnotes {
  border-top: 1px solid #d6ddce;
  margin-top: 22px;
}
.price-footnotes > details {
  border: 0;
  border-bottom: 1px solid #d6ddce;
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}
.price-footnotes summary {
  padding: 21px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #34482d;
}
.price-footnotes details > div {
  padding: 0 0 22px;
}
.price-footnotes p {
  font-size: 13px;
  line-height: 1.8;
  color: #526049;
  max-width: 940px;
}
.price-total-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0;
}
.price-total-grid > div {
  padding: 18px;
  border: 1px solid #d7dfcb;
  border-radius: 9px;
  background: #f2f5eb;
}
.price-total-grid > div > b {
  color: #30472d;
  font-size: 15px;
}
.price-total-grid dl {
  margin: 12px 0 0;
}
.price-total-grid dl > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  padding: 7px 0;
  border-bottom: 1px solid #dde3d4;
}
.price-total-grid dl > div:last-child {
  border: 0;
}
.price-total-grid dd {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}
.gold-price-summary {
  background: #f0f3e8;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}
.gold-price-summary > span {
  display: block;
  font-size: 11px;
  color: #556248;
}
.gold-price-summary > b {
  display: block;
  font-size: 25px;
  margin: 12px 0;
}
.gold-price-summary > p {
  font-size: 13px;
  line-height: 1.9;
}
@media (max-width: 1050px) {
  .early-bird {
    gap: 30px;
    padding: 32px;
  }
  .pricing-v5 .price-card {
    padding: 25px 20px;
  }
  .pricing-v5 .price-card-top {
    align-items: start;
    flex-direction: column;
  }
  .price-total-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .early-bird {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 20px;
    border-radius: 14px;
  }
  .early-bird h3 {
    font-size: 39px;
  }
  .early-bird-copy > p {
    font-size: 14px;
  }
  .bonus-example {
    padding: 22px 18px;
    transform: none;
  }
  .bonus-example .bonus-result {
    align-items: center;
  }
  .bonus-result strong {
    font-size: 34px;
  }
  .pricing-v5 .pricing-controls {
    gap: 20px;
  }
  .pricing-v5 .package-intro {
    min-height: 0;
  }
  .pricing-v5 .billing-detail {
    min-height: 0;
  }
  .pricing-v5 .price-card {
    padding: 26px;
  }
  .pricing-v5 .price-card-top {
    flex-direction: row;
    align-items: center;
  }
  .pricing-v5 .package-price strong {
    font-size: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-example {
    transition: none;
    transform: none;
  }
}
body.motion-paused .bonus-example {
  transition: none;
  transform: none;
}
