:root {
  --bg: #fff8ef;
  --surface: #fffdf9;
  --surface-2: #f5e6d8;
  --text: #2f2622;
  --muted: #735f57;
  --primary: #9f4f5f;
  --primary-2: #c96f7c;
  --accent: #efb934;
  --green: #718b68;
  --line: rgba(80, 56, 45, 0.16);
  --shadow: 0 18px 45px rgba(70, 45, 32, 0.12);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 90%, white 10%);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    center / cover no-repeat
    url("../assets/brand/logo-magia-en-hilo.jpg");
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(70, 45, 32, 0.14);
}

.links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.93rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(70, 45, 32, 0.08);
}

.btn,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.btn.alt {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.68);
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: none;
}

.chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero > .wrap,
.section > .wrap,
.band > .wrap,
.contact > .wrap {
  position: relative;
  z-index: 1;
}

.photo {
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.card,
.panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(70, 45, 32, 0.08);
}

.card {
  padding: 26px;
}

.panel {
  padding: 38px;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head::after {
  content: "";
  display: block;
  width: min(420px, 100%);
  height: 24px;
  margin: 18px auto 0;
  background: center / contain no-repeat url("../assets/ui-kit-v3/png/banner-ribbon.png");
  opacity: 0.92;
}

.price {
  margin: 12px 0 10px;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
}

.icon-bullets,
.feature-strip,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-bullets {
  margin-top: 26px;
}

.icon-bullets span,
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(70, 45, 32, 0.08);
  font: 700 0.9rem/1 Arial, Helvetica, sans-serif;
  color: var(--muted);
}

.icon-bullets img,
.feature-pill img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.badge-row {
  margin-top: 26px;
}

.badge-row img {
  width: min(168px, 30vw);
  max-width: 100%;
  height: auto;
}

.sticker-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.sticker-note img {
  width: 100%;
  max-width: 120px;
  justify-self: center;
}

.sticker-note p:last-child,
.sticker-note h3:last-child {
  margin-bottom: 0;
}

.brand-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.brand-emblem {
  width: min(260px, 100%);
  margin: 0 auto;
}

.brand-emblem img {
  width: 100%;
  height: auto;
}

.soft-panel {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(70, 45, 32, 0.08);
}

.finalist-nav {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(70, 45, 32, 0.08);
}

.finalist-nav h3 {
  margin-bottom: 0;
}

.finalist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finalist-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font: 700 0.88rem/1 Arial, Helvetica, sans-serif;
  color: var(--primary);
}

.band {
  padding: 72px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.band .lead {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  padding: 38px 0;
  background: #241c18;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.contact::before {
  content: "";
  display: block;
  width: min(540px, calc(100% - 36px));
  height: 34px;
  margin: 0 auto 20px;
  background: center / contain no-repeat url("../assets/ui-kit-v2/png/divider-heart.png");
  opacity: 0.95;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.contact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
}

.contact a {
  overflow-wrap: anywhere;
}

.footer {
  padding: 20px;
  background: #1b1512;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  width: min(360px, calc(100% - 64px));
  height: 28px;
  margin: 0 auto 14px;
  background: center / contain no-repeat url("../assets/ui-kit-v3/png/banner-ribbon.png");
  opacity: 0.9;
}

.m02 {
  --bg: #fffdf7;
  --surface: #ffffff;
  --surface-2: #f3efe7;
  --primary: #6f7f5a;
  --primary-2: #b96f75;
  --accent: #dba93d;
}

.m03 {
  --bg: #f7f0ed;
  --surface: #fffdfa;
  --surface-2: #eadbd5;
  --primary: #8b5766;
  --accent: #c6a15f;
}

.m04 {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-2: #eeeeea;
  --primary: #2f2622;
  --accent: #9f4f5f;
}

.m05 {
  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-2: #f8e1e9;
  --primary: #be4d78;
  --primary-2: #658c77;
  --accent: #f0bf33;
}

.m06 {
  --bg: #181311;
  --surface: #251d19;
  --surface-2: #332721;
  --text: #fff8ef;
  --muted: #d8c3b5;
  --primary: #d3a85c;
  --primary-2: #9f4f5f;
  --accent: #f0d184;
  --line: rgba(255, 248, 239, 0.16);
}

.m06 .topbar,
.m06 .contact,
.m06 .footer {
  background: #14100e;
}

.m07 {
  --bg: #f5fbf7;
  --surface: #ffffff;
  --surface-2: #e5f1e8;
  --primary: #527d68;
  --primary-2: #d08285;
  --accent: #f0b94b;
}

.m08 {
  --bg: #fff6f1;
  --surface: #ffffff;
  --surface-2: #f4d7cc;
  --primary: #b95d68;
  --primary-2: #8d6b57;
  --accent: #e6a93c;
}

.m09 {
  --bg: #f8f5ed;
  --surface: #ffffff;
  --surface-2: #e0e8d7;
  --primary: #5b7654;
  --primary-2: #b96f75;
  --accent: #d8a643;
}

.m10 {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-2: #f1e2d8;
  --primary: #a94f61;
  --primary-2: #58766a;
  --accent: #f0b735;
}

.m11 {
  --bg: #fff3dd;
  --surface: #fffaf0;
  --surface-2: #f6c987;
  --text: #3a251d;
  --muted: #725448;
  --primary: #b55038;
  --primary-2: #5f7f68;
  --accent: #e2a13a;
}

.m12 {
  --bg: #fff7f8;
  --surface: #ffffff;
  --surface-2: #f8dfe6;
  --text: #34242a;
  --muted: #75626a;
  --primary: #ad536d;
  --primary-2: #6d8b73;
  --accent: #e5b84c;
}

.m13 {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f4f1;
  --text: #202020;
  --muted: #666666;
  --primary: #202020;
  --primary-2: #8f5b66;
  --accent: #d7a83f;
  --line: rgba(32, 32, 32, 0.14);
  --shadow: none;
}

.m14 {
  --bg: #f5fbf2;
  --surface: #ffffff;
  --surface-2: #dbead3;
  --text: #263126;
  --muted: #5c6b59;
  --primary: #4e7b5f;
  --primary-2: #bd6f7b;
  --accent: #eab84a;
}

.m15 {
  --bg: #fbf8f1;
  --surface: #ffffff;
  --surface-2: #ece4d9;
  --text: #201b18;
  --muted: #70645e;
  --primary: #7b3948;
  --primary-2: #284d45;
  --accent: #c89a3c;
}

.m16 {
  --bg: #fff7f3;
  --surface: #ffffff;
  --surface-2: #f8e4de;
  --text: #2b2020;
  --muted: #746162;
  --primary: #bd2f43;
  --primary-2: #9b6b5f;
  --accent: #e7b64d;
}

.m17 {
  --bg: #09090b;
  --surface: #17171c;
  --surface-2: #24242c;
  --text: #ffffff;
  --muted: #c7c7d1;
  --primary: #ff3b7f;
  --primary-2: #20d8d2;
  --accent: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.m17 .topbar,
.m17 .contact,
.m17 .footer {
  background: #050507;
}

.m18 {
  --bg: #fffaf4;
  --surface: #ffffff;
  --surface-2: #f1e4d6;
  --text: #2b2520;
  --muted: #74675f;
  --primary: #a65b43;
  --primary-2: #4f7767;
  --accent: #e1aa42;
}

.m19 {
  --bg: #fff8e8;
  --surface: #fffef8;
  --surface-2: #ead7b8;
  --text: #31251d;
  --muted: #766457;
  --primary: #b75f70;
  --primary-2: #607f73;
  --accent: #e7b64b;
}

.m20 {
  --bg: #f8f2e8;
  --surface: #fffdf8;
  --surface-2: #ded1bd;
  --text: #2f271f;
  --muted: #75695d;
  --primary: #7a5b41;
  --primary-2: #6f8660;
  --accent: #cf963f;
}

.m21 {
  --bg: #fff6fb;
  --surface: #ffffff;
  --surface-2: #ffe4f0;
  --text: #302630;
  --muted: #756475;
  --primary: #d95591;
  --primary-2: #59a99f;
  --accent: #ffd166;
}

.m22 {
  --bg: #16110f;
  --surface: #241b18;
  --surface-2: #382920;
  --text: #fff8ef;
  --muted: #d8c6bb;
  --primary: #d7a75a;
  --primary-2: #b96f75;
  --accent: #f2d28a;
  --line: rgba(255, 248, 239, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.m22 .topbar,
.m22 .contact,
.m22 .footer {
  background: #100c0b;
}

.m23 {
  --bg: #f4fff8;
  --surface: #ffffff;
  --surface-2: #d9f5e5;
  --text: #1e3026;
  --muted: #597064;
  --primary: #1f8f57;
  --primary-2: #c96f7c;
  --accent: #f3bd41;
}

.m24 {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #e7ddce;
  --text: #25211d;
  --muted: #6e665d;
  --primary: #6d4451;
  --primary-2: #62775d;
  --accent: #caa24b;
}

.m25 {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-2: #f1dfcf;
  --text: #2d241f;
  --muted: #74645d;
  --primary: #8d4d5c;
  --primary-2: #58766a;
  --accent: #dba743;
}

.m26 {
  --bg: #101018;
  --surface: #1b1b27;
  --surface-2: #26263a;
  --text: #ffffff;
  --muted: #c8c8d8;
  --primary: #ff4fa3;
  --primary-2: #37d5c8;
  --accent: #ffe45e;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.m26 .topbar,
.m26 .contact,
.m26 .footer {
  background: #090910;
}

.m27 {
  --bg: #f8f3eb;
  --surface: #fffdf8;
  --surface-2: #e7d9c8;
  --text: #201d1a;
  --muted: #706761;
  --primary: #8a4c56;
  --primary-2: #4f6f61;
  --accent: #c89b44;
}

.m28 {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #dcecf8;
  --text: #263140;
  --muted: #617084;
  --primary: #5277a8;
  --primary-2: #d58a9a;
  --accent: #e7bd54;
}

.m29 {
  --bg: #fff9f1;
  --surface: #ffffff;
  --surface-2: #ead8c7;
  --text: #2c211d;
  --muted: #76655d;
  --primary: #9f2f3d;
  --primary-2: #356f57;
  --accent: #d6a642;
}

.m30 {
  --bg: #fff5f7;
  --surface: #ffffff;
  --surface-2: #f8dce3;
  --text: #34252a;
  --muted: #786269;
  --primary: #c74767;
  --primary-2: #8c4e5c;
  --accent: #e6b64f;
}

.m31 {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-2: #efeee8;
  --text: #22211f;
  --muted: #686864;
  --primary: #3d5f52;
  --primary-2: #9f4f5f;
  --accent: #d29b3d;
}

.m32 {
  --bg: #f9f5ef;
  --surface: #ffffff;
  --surface-2: #eadfd4;
  --text: #2a221d;
  --muted: #74675f;
  --primary: #6c4150;
  --primary-2: #5c7567;
  --accent: #d5a047;
}

.m33 {
  --bg: #f8faf7;
  --surface: #ffffff;
  --surface-2: #e1ebdf;
  --text: #222820;
  --muted: #5f6a5f;
  --primary: #486e53;
  --primary-2: #a85768;
  --accent: #d7a746;
}

.m34 {
  --bg: #fff8f0;
  --surface: #ffffff;
  --surface-2: #f0ddc7;
  --text: #2c221b;
  --muted: #75645a;
  --primary: #a05b42;
  --primary-2: #5f7b6c;
  --accent: #e0aa43;
}

.m35 {
  --bg: #fdfcf8;
  --surface: #ffffff;
  --surface-2: #efebe2;
  --text: #1d1b18;
  --muted: #6a665f;
  --primary: #1d1b18;
  --primary-2: #8f5964;
  --accent: #c8a15a;
  --line: rgba(29, 27, 24, 0.12);
  --shadow: 0 22px 55px rgba(29, 27, 24, 0.08);
}

.m36 {
  --bg: #1d1814;
  --surface: #2b241f;
  --surface-2: #3a3028;
  --text: #fff3e1;
  --muted: #d7c4ad;
  --primary: #c89b5b;
  --primary-2: #8d5b63;
  --accent: #e2bd77;
  --line: rgba(255, 243, 225, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.m36 .topbar,
.m36 .contact,
.m36 .footer {
  background: #14100d;
}

.m37 {
  --bg: #fbfff8;
  --surface: #ffffff;
  --surface-2: #e3efd9;
  --text: #223022;
  --muted: #60705c;
  --primary: #416a47;
  --primary-2: #9a5865;
  --accent: #d3a84b;
}

.m38 {
  --bg: #fff9ed;
  --surface: #fffdf6;
  --surface-2: #ead9bd;
  --text: #33261d;
  --muted: #79685a;
  --primary: #a05d43;
  --primary-2: #5b7668;
  --accent: #d8a242;
}

.m39 {
  --bg: #faf7f4;
  --surface: #ffffff;
  --surface-2: #eaded5;
  --text: #292321;
  --muted: #716762;
  --primary: #765261;
  --primary-2: #758266;
  --accent: #c9a55b;
}

.m40 {
  --bg: #fff7f2;
  --surface: #ffffff;
  --surface-2: #f5ddd1;
  --text: #30251f;
  --muted: #74635b;
  --primary: #b65d68;
  --primary-2: #58766a;
  --accent: #e7b84b;
}

.m41 {
  --bg: #f5fff8;
  --surface: #ffffff;
  --surface-2: #dcf4e6;
  --text: #203025;
  --muted: #5c7164;
  --primary: #16864f;
  --primary-2: #ca6e7a;
  --accent: #efbd48;
}

.m42 {
  --bg: #f2f6ea;
  --surface: #ffffff;
  --surface-2: #dae7cd;
  --text: #263123;
  --muted: #62705d;
  --primary: #527143;
  --primary-2: #8f5d55;
  --accent: #d5a241;
}

.m43 {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #e3effb;
  --text: #263242;
  --muted: #607286;
  --primary: #7d91c9;
  --primary-2: #d78ba0;
  --accent: #f1c95a;
}

.m44 {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-2: #f1e3d5;
  --text: #2b241f;
  --muted: #73655d;
  --primary: #8d4d5e;
  --primary-2: #537568;
  --accent: #d8a342;
}

.m45 {
  --bg: #111418;
  --surface: #1c2228;
  --surface-2: #28323b;
  --text: #ffffff;
  --muted: #cbd4dc;
  --primary: #f0b84e;
  --primary-2: #d66f86;
  --accent: #8ed6c3;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.m45 .topbar,
.m45 .contact,
.m45 .footer {
  background: #0b0e12;
}

.m46 {
  --bg: #fbf7ef;
  --surface: #ffffff;
  --surface-2: #eadfce;
  --text: #2a231f;
  --muted: #746860;
  --primary: #8f5360;
  --primary-2: #596f62;
  --accent: #cfa04a;
}

.m47 {
  --bg: #fff9f5;
  --surface: #ffffff;
  --surface-2: #f4ded5;
  --text: #2d231f;
  --muted: #75635d;
  --primary: #b35764;
  --primary-2: #4f7567;
  --accent: #e0a944;
}

.m48 {
  --bg: #f7fbf4;
  --surface: #ffffff;
  --surface-2: #e2efd9;
  --text: #253123;
  --muted: #657160;
  --primary: #55744b;
  --primary-2: #a05b67;
  --accent: #d8a548;
}

.m49 {
  --bg: #fdf8f0;
  --surface: #ffffff;
  --surface-2: #f0dfcb;
  --text: #2b241d;
  --muted: #75665b;
  --primary: #a55f43;
  --primary-2: #5e7568;
  --accent: #e2ac42;
}

.m50 {
  --bg: #fff7f6;
  --surface: #ffffff;
  --surface-2: #f7dde0;
  --text: #302326;
  --muted: #756366;
  --primary: #be5b6d;
  --primary-2: #657a60;
  --accent: #e4b34b;
}

.m51 {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-2: #efebe2;
  --text: #22211e;
  --muted: #696762;
  --primary: #2e2d29;
  --primary-2: #9c5863;
  --accent: #caa15c;
}

.m52 {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-2: #f0e5d7;
  --text: #2b241f;
  --muted: #73665f;
  --primary: #7d4e5b;
  --primary-2: #506f63;
  --accent: #d6a141;
}

.m53 {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --surface-2: #e8e6f4;
  --text: #252334;
  --muted: #666278;
  --primary: #6e5aa8;
  --primary-2: #c96f7c;
  --accent: #d9aa45;
}

.m54 {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-2: #f3dfc9;
  --text: #2c241f;
  --muted: #74645c;
  --primary: #9c5946;
  --primary-2: #5f7968;
  --accent: #dfaa43;
}

.m55 {
  --bg: #f8fbf9;
  --surface: #ffffff;
  --surface-2: #dfece4;
  --text: #202b26;
  --muted: #5f6f67;
  --primary: #4c735f;
  --primary-2: #a05d6b;
  --accent: #d8a642;
}

.hero-soft {
  background:
    linear-gradient(120deg, rgba(255, 248, 239, 0.96), rgba(242, 214, 199, 0.65)),
    url("../assets/brand/coleccion-ramos.jpg");
  background-size: cover;
  background-position: center;
}

.hero-retro {
  background:
    linear-gradient(90deg, rgba(255, 243, 221, 0.96), rgba(255, 243, 221, 0.82)),
    repeating-linear-gradient(135deg, rgba(181, 80, 56, 0.12) 0 12px, rgba(226, 161, 58, 0.12) 12px 24px);
}

.hero-floral {
  background:
    linear-gradient(90deg, rgba(255, 247, 248, 0.94), rgba(255, 247, 248, 0.66)),
    url("../assets/brand/ramo-completo.jpg");
  background-size: cover;
  background-position: center;
}

.hero-simple {
  min-height: auto;
  padding: 110px 0 88px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.retro-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floral-card {
  position: relative;
  overflow: hidden;
}

.floral-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  border-radius: 6px;
  pointer-events: none;
}

.simple-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.simple-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.simple-list strong {
  color: var(--text);
}

.market-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.market-note {
  padding: 24px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.editorial-title {
  max-width: 930px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.88;
}

.editorial-kicker {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pin-board {
  columns: 3 260px;
  column-gap: 18px;
}

.pin {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.pin img {
  width: 100%;
  height: auto;
}

.pin-copy {
  padding: 18px;
}

.pin-copy h3 {
  margin-bottom: 6px;
}

.pin-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.pin-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pin-search .chip {
  background: white;
  color: var(--primary);
  border-color: rgba(189, 47, 67, 0.18);
}

.tiktok-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 216, 210, 0.22), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(255, 59, 127, 0.24), transparent 30%),
    #09090b;
}

.phone-stack {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.phone {
  width: min(340px, 100%);
  min-height: 610px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #111116, #252531);
  box-shadow:
    18px 18px 0 rgba(255, 59, 127, 0.22),
    -18px -18px 0 rgba(32, 216, 210, 0.18),
    var(--shadow);
}

.phone-screen {
  position: relative;
  min-height: 582px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
    url("../assets/brand/rosa-envuelta.jpg");
  background-size: cover;
  background-position: center;
}

.phone-caption {
  position: absolute;
  left: 18px;
  right: 74px;
  bottom: 20px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.phone-caption strong {
  display: block;
  margin-bottom: 8px;
}

.phone-actions {
  position: absolute;
  right: 14px;
  bottom: 24px;
  display: grid;
  gap: 12px;
}

.phone-actions span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111116;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
}

.video-cards {
  display: grid;
  gap: 14px;
}

.video-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

.video-card strong {
  display: block;
  color: white;
}

.video-card span {
  color: var(--muted);
}

.video-thumb {
  aspect-ratio: 9 / 12;
  overflow: hidden;
  border-radius: 10px;
  background: var(--surface-2);
}

.video-thumb img {
  height: 100%;
  object-fit: cover;
}

.shop-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(70, 45, 32, 0.08);
}

.shop-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-item div {
  padding: 16px;
}

.shop-item h3 {
  font-size: 1.15rem;
}

.scrapbook {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: center;
}

.scrap-note {
  padding: 28px;
  border-radius: 8px;
  background: #fffef8;
  border: 1px solid rgba(49, 37, 29, 0.14);
  box-shadow: 12px 12px 0 rgba(183, 95, 112, 0.16);
  transform: rotate(-1.5deg);
}

.scrap-note:nth-child(even) {
  box-shadow: -12px 12px 0 rgba(96, 127, 115, 0.16);
  transform: rotate(1.3deg);
}

.boho-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.boho-strip div {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
}

.cute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cute-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
  border: 2px solid rgba(217, 85, 145, 0.16);
  box-shadow: 0 14px 34px rgba(217, 85, 145, 0.11);
}

.cute-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.luxury-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: end;
}

.luxury-rule {
  width: 120px;
  height: 2px;
  margin: 28px 0;
  background: var(--primary);
}

.contact-box {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
}

.chat-message {
  width: fit-content;
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--text);
}

.chat-message.answer {
  justify-self: end;
  background: var(--primary);
  color: white;
}

.status-note {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: 700 0.8rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: clamp(90px, 12vw, 160px);
  height: clamp(180px, 22vw, 300px);
  left: clamp(8px, 2vw, 26px);
  top: clamp(86px, 11vw, 130px);
}

.hero::after {
  width: clamp(90px, 12vw, 160px);
  height: clamp(180px, 22vw, 300px);
  right: clamp(8px, 2vw, 26px);
  bottom: clamp(16px, 3vw, 28px);
}

.hero-soft::before,
.hero-floral::before,
body.m12 .hero::before,
body.m15 .hero::before,
body.m19 .hero::before,
body.m25 .hero::before,
body.m30 .hero::before,
body.m39 .hero::before,
body.m49 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/corner-bouquet.png");
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
}

.hero-soft::after,
.hero-floral::after,
body.m12 .hero::after,
body.m15 .hero::after,
body.m19 .hero::after,
body.m25 .hero::after,
body.m30 .hero::after,
body.m39 .hero::after,
body.m49 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/sprig-lavender.png");
  width: clamp(94px, 12vw, 150px);
  height: clamp(180px, 24vw, 300px);
}

body.m04 .hero::before,
body.m09 .hero::before,
body.m17 .hero::before,
body.m26 .hero::before,
body.m32 .hero::before,
body.m34 .hero::before,
body.m38 .hero::before,
body.m53 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/sprig-lavender.png");
}

body.m04 .hero::after,
body.m09 .hero::after,
body.m17 .hero::after,
body.m26 .hero::after,
body.m32 .hero::after,
body.m34 .hero::after,
body.m38 .hero::after,
body.m53 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/icon-daisy.png");
  width: clamp(92px, 11vw, 148px);
  height: clamp(92px, 11vw, 148px);
}

body.m03 .hero::before,
body.m06 .hero::before,
body.m18 .hero::before,
body.m22 .hero::before,
body.m24 .hero::before,
body.m31 .hero::before,
body.m35 .hero::before,
body.m41 .hero::before,
body.m46 .hero::before,
body.m54 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/banner-ribbon.png");
  width: clamp(96px, 13vw, 180px);
  height: clamp(96px, 13vw, 180px);
}

body.m03 .hero::after,
body.m06 .hero::after,
body.m18 .hero::after,
body.m22 .hero::after,
body.m24 .hero::after,
body.m31 .hero::after,
body.m35 .hero::after,
body.m41 .hero::after,
body.m46 .hero::after,
body.m54 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/badge-edicion.png");
  width: clamp(110px, 15vw, 210px);
  height: clamp(110px, 15vw, 210px);
}

body.m07 .hero::before,
body.m10 .hero::before,
body.m16 .hero::before,
body.m23 .hero::before,
body.m40 .hero::before,
body.m45 .hero::before,
body.m50 .hero::before,
body.m55 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/sticker-heart-bubble.png");
  width: clamp(86px, 11vw, 136px);
  height: clamp(86px, 11vw, 136px);
}

body.m07 .hero::after,
body.m10 .hero::after,
body.m16 .hero::after,
body.m23 .hero::after,
body.m40 .hero::after,
body.m45 .hero::after,
body.m50 .hero::after,
body.m55 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/icon-tulip.png");
  width: clamp(102px, 13vw, 170px);
  height: clamp(102px, 13vw, 170px);
}

body.m01 .hero::before,
body.m05 .hero::before,
body.m08 .hero::before,
body.m11 .hero::before,
body.m13 .hero::before,
body.m14 .hero::before,
body.m20 .hero::before,
body.m21 .hero::before,
body.m27 .hero::before,
body.m28 .hero::before,
body.m29 .hero::before,
body.m33 .hero::before,
body.m36 .hero::before,
body.m37 .hero::before,
body.m42 .hero::before,
body.m43 .hero::before,
body.m44 .hero::before,
body.m47 .hero::before,
body.m48 .hero::before,
body.m51 .hero::before,
body.m52 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/icon-tulip.png");
  width: clamp(94px, 12vw, 140px);
  height: clamp(120px, 14vw, 180px);
}

body.m01 .hero::after,
body.m05 .hero::after,
body.m08 .hero::after,
body.m11 .hero::after,
body.m13 .hero::after,
body.m14 .hero::after,
body.m20 .hero::after,
body.m21 .hero::after,
body.m27 .hero::after,
body.m28 .hero::after,
body.m29 .hero::after,
body.m33 .hero::after,
body.m36 .hero::after,
body.m37 .hero::after,
body.m42 .hero::after,
body.m43 .hero::after,
body.m44 .hero::after,
body.m47 .hero::after,
body.m48 .hero::after,
body.m51 .hero::after,
body.m52 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/corner-bouquet.png");
  width: clamp(120px, 16vw, 210px);
  height: clamp(120px, 16vw, 210px);
}

body.m01 .hero::before,
body.m05 .hero::before,
body.m08 .hero::before,
body.m11 .hero::before,
body.m12 .hero::before,
body.m15 .hero::before,
body.m19 .hero::before,
body.m21 .hero::before,
body.m25 .hero::before,
body.m28 .hero::before,
body.m30 .hero::before,
body.m39 .hero::before,
body.m43 .hero::before,
body.m49 .hero::before {
  filter: drop-shadow(0 12px 18px rgba(70, 45, 32, 0.12));
}

body.m07 .hero::before,
body.m10 .hero::before,
body.m16 .hero::before,
body.m23 .hero::before,
body.m40 .hero::before,
body.m45 .hero::before,
body.m50 .hero::before,
body.m55 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/sticker-heart-bubble.png");
}

body.m07 .hero::after,
body.m10 .hero::after,
body.m16 .hero::after,
body.m23 .hero::after,
body.m40 .hero::after,
body.m45 .hero::after,
body.m50 .hero::after,
body.m55 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/icon-tulip.png");
}

body.m01 .hero::before,
body.m05 .hero::before,
body.m08 .hero::before,
body.m11 .hero::before,
body.m13 .hero::before,
body.m14 .hero::before,
body.m20 .hero::before,
body.m21 .hero::before,
body.m27 .hero::before,
body.m28 .hero::before,
body.m29 .hero::before,
body.m33 .hero::before,
body.m36 .hero::before,
body.m37 .hero::before,
body.m42 .hero::before,
body.m43 .hero::before,
body.m44 .hero::before,
body.m47 .hero::before,
body.m48 .hero::before,
body.m51 .hero::before,
body.m52 .hero::before {
  background-image: url("../assets/ui-kit-v3/png/icon-daisy.png");
}

body.m01 .hero::after,
body.m05 .hero::after,
body.m08 .hero::after,
body.m11 .hero::after,
body.m13 .hero::after,
body.m14 .hero::after,
body.m20 .hero::after,
body.m21 .hero::after,
body.m27 .hero::after,
body.m28 .hero::after,
body.m29 .hero::after,
body.m33 .hero::after,
body.m36 .hero::after,
body.m37 .hero::after,
body.m42 .hero::after,
body.m43 .hero::after,
body.m44 .hero::after,
body.m47 .hero::after,
body.m48 .hero::after,
body.m51 .hero::after,
body.m52 .hero::after {
  background-image: url("../assets/ui-kit-v3/png/icon-tulip.png");
}

body.m12,
body.m15,
body.m19,
body.m28,
body.m30,
body.m39,
body.m49 {
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.95), rgba(255, 248, 239, 0.95)),
    radial-gradient(circle at 1px 1px, rgba(159, 79, 95, 0.12) 1px, transparent 1.2px);
}

body.m21,
body.m23,
body.m29,
body.m43,
body.m45,
body.m52 {
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.95), rgba(255, 248, 239, 0.95)),
    radial-gradient(circle at 10px 10px, rgba(201, 111, 124, 0.12) 1.4px, transparent 1.6px);
}

body.m20,
body.m37,
body.m42,
body.m47,
body.m54 {
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.94), rgba(255, 248, 239, 0.94)),
    radial-gradient(circle at 12px 12px, rgba(113, 139, 104, 0.13) 1.5px, transparent 1.8px);
}

body.m12,
body.m15,
body.m19,
body.m20,
body.m21,
body.m23,
body.m28,
body.m29,
body.m30,
body.m37,
body.m39,
body.m42,
body.m43,
body.m45,
body.m47,
body.m49,
body.m52,
body.m54 {
  background-size: auto, 260px;
  background-repeat: repeat, repeat;
}

.event-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.event-row > div {
  padding: 18px;
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
}

.event-row strong {
  display: block;
  color: var(--primary);
}

.brand-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--line);
  padding-left: 24px;
}

.timeline article {
  position: relative;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

.neon-frame {
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  box-shadow: 0 0 38px rgba(255, 79, 163, 0.26);
}

.neon-inner {
  padding: 28px;
  border-radius: 22px;
  background: var(--surface);
}

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

.reel-card {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
}

.magazine-cover {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.magazine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soft-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soft-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.season-panel {
  padding: 34px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(159, 47, 61, 0.94), rgba(53, 111, 87, 0.9)),
    url("../assets/brand/rosa-envuelta.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.heart-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.heart-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 999px 999px 18px 18px;
  background: var(--surface);
  border: 1px solid rgba(199, 71, 103, 0.18);
  box-shadow: 0 14px 34px rgba(199, 71, 103, 0.1);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

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

.market-product {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.market-product img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.market-product div {
  padding: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.portfolio-grid img {
  min-height: 260px;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.class-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.class-date {
  display: grid;
  place-items: center;
  min-height: 110px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-align: center;
}

.minimal-luxe {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.minimal-luxe .wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.tiny-nav {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.library-card {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.specimen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.specimen-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.specimen-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notebook-page {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(transparent 95%, rgba(160, 93, 67, 0.12) 96%),
    var(--surface);
  background-size: 100% 34px;
  border: 1px solid rgba(51, 38, 29, 0.16);
  box-shadow: 14px 14px 0 rgba(160, 93, 67, 0.12);
}

.wedding-menu {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.wedding-menu div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
}

.one-screen {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 36px 0;
}

.one-screen-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.direct-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.direct-catalog .card {
  display: grid;
  gap: 12px;
}

.eco-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eco-meter div {
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.baby-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.baby-ribbon span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

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

.box-card {
  padding: 26px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.launch-count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.launch-count div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.launch-count strong {
  display: block;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.atelier-bar {
  padding: 10px 0;
  background: var(--primary);
  color: white;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.collection-tabs span {
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.occasion {
  min-height: 150px;
  display: grid;
  align-content: end;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(70, 45, 32, 0.07);
}

.custom-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
}

.custom-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.fake-input {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 400;
}

.testimonial-wall {
  columns: 3 260px;
  column-gap: 18px;
}

.testimonial {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(70, 45, 32, 0.08);
  break-inside: avoid;
}

.testimonial p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.quick-shop {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

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

.quick-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.quick-item img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.palette-builder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--line);
}

.seasonal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.season-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.tracker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tracker div {
  padding: 20px;
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
}

.tracker strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.gift-guide {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.guide-menu {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}

.guide-menu span {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.care-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.care-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.drops {
  display: grid;
  gap: 14px;
}

.drop-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-cover {
  color: white;
  background:
    linear-gradient(90deg, rgba(35, 23, 18, 0.78), rgba(35, 23, 18, 0.28)),
    url("../assets/brand/rosas-color.jpg");
  background-size: cover;
  background-position: center;
}

.hero-cover .eyebrow,
.hero-cover .lead {
  color: rgba(255, 255, 255, 0.86);
}

.product-img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  margin: -26px -26px 20px;
}

.product-img img {
  height: 100%;
  object-fit: cover;
}

.quote {
  padding: 38px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  font-size: 1.55rem;
  line-height: 1.28;
}

.steps {
  counter-reset: step;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery img {
  height: 100%;
  min-height: 230px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery img:nth-child(2) {
  transform: translateY(34px);
}

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

.faq details {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .gallery,
  .market-row,
  .phone-stack,
  .shop-shelf,
  .scrapbook,
  .boho-strip,
  .cute-grid,
  .luxury-split,
  .event-row,
  .brand-story,
  .reel-grid,
  .magazine-cover,
  .heart-layout,
  .market-grid,
  .portfolio-grid,
  .service-layout,
  .minimal-luxe .wrap,
  .specimen,
  .one-screen-card,
  .direct-catalog,
  .eco-meter,
  .box-grid,
  .launch-count,
  .occasion-grid,
  .quick-shop,
  .quick-item,
  .palette-builder,
  .seasonal-row,
  .tracker,
  .gift-guide,
  .care-grid,
  .drop-item {
    grid-template-columns: 1fr;
  }

  .guide-menu {
    position: static;
  }

  .class-card {
    grid-template-columns: 1fr;
  }

  .gallery img:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .links {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 4px;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 64px;
  }

  .photo {
    min-height: 320px;
  }

  .panel {
    padding: 26px 18px;
  }

  .simple-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(2.2rem, 15vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.75rem, 11vw, 2.8rem);
  }

  .lead {
    font-size: 1rem;
  }

  .actions,
  .buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .icon-bullets,
  .feature-strip,
  .badge-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .badge-row img {
    width: min(220px, 100%);
  }

  .sticker-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .card,
  .panel,
  .story-box,
  .product-panel,
  .quote,
  .scrap-note,
  .notebook-page,
  .library-card,
  .neon-inner {
    padding: 22px 16px;
  }

  .photo,
  .hero-photo {
    min-height: 280px;
  }

  .phone {
    min-height: auto;
    border-radius: 24px;
    padding: 10px;
    box-shadow:
      9px 9px 0 rgba(255, 59, 127, 0.22),
      -9px -9px 0 rgba(32, 216, 210, 0.18),
      var(--shadow);
  }

  .phone-screen {
    min-height: 520px;
  }

  .editorial-kicker,
  .magazine-meta {
    justify-content: flex-start;
  }

  .editorial-title {
    font-size: clamp(3rem, 19vw, 5rem);
  }

  .heart-card {
    border-radius: 24px;
  }

  .hero::before,
  .hero::after {
    opacity: 0.44;
  }

  .contact::before,
  .footer::before,
  .section-head::after {
    width: min(100%, 320px);
  }
}
