/* TAOLIN - design system.
   Airy, feminine, elegant: thin serif display type, warm ivory ground with
   soft blush and sage washes, frosted-glass surfaces, delicate hairlines. */

:root {
  --bg: #242E36;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-solid: #2B353E;
  --ink: #ECEAE4;
  --muted: #A9B1B8;
  --accent: #C9AA81;
  --accent-dark: #D9BE97;
  --accent-soft: rgba(201, 170, 129, 0.14);
  --hairline: rgba(255, 255, 255, 0.13);
  --error: #E09A85;

  --tint-1: #34414B;
  --tint-2: #413A2F;
  --tint-3: #2C3944;
  --tint-4: #403630;
  --tint-5: #3A4149;
  --tint-6: #313C46;

  --font-display: 'Fraunces', Georgia, 'PingFang SC', 'Noto Sans CJK SC', 'Microsoft YaHei', serif;
  --font-body: 'Instrument Sans', -apple-system, 'Segoe UI', 'PingFang SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;

  --gutter: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-s: 12px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.14);
  --shadow-1: 0 2px 14px rgba(0, 0, 0, 0.22);
  --shadow-2: 0 16px 48px -12px rgba(0, 0, 0, 0.45);
  --shadow-dialog: 0 24px 72px -16px rgba(0, 0, 0, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: #151C22; }

body {
  /* isolate: makes the aurora (negative z-index children) paint ABOVE
     this background instead of being hidden behind it */
  isolation: isolate;
  background-color: #151C22;
  /* the image's own backdrop, continued as the page */
  background-image: linear-gradient(180deg, #67767F 0%, #45535D 30%, #2A353E 62%, #151C22 100%);
  background-repeat: no-repeat;
  background-size: 100% 160vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}


/* breathing aurora: two soft light-bodies drifting and swelling
   inside the gradient, like slow light under water */
body::before, body::after {
  content: '';
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform, opacity;
}

body::before {
  width: 120vmax;
  height: 120vmax;
  left: -35vmax;
  top: -55vmax;
  background: radial-gradient(circle at center, rgba(146, 168, 182, 0.4), rgba(146, 168, 182, 0.12) 42%, transparent 68%);
  animation: breathe-a 21s ease-in-out infinite alternate;
}

body::after {
  width: 100vmax;
  height: 100vmax;
  right: -45vmax;
  top: -20vmax;
  background: radial-gradient(circle at center, rgba(201, 170, 129, 0.17), rgba(201, 170, 129, 0.05) 45%, transparent 70%);
  animation: breathe-b 29s ease-in-out infinite alternate;
}

@keyframes breathe-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50%  { transform: translate3d(9vw, 6vh, 0) scale(1.14); opacity: 1; }
  100% { transform: translate3d(-5vw, 12vh, 0) scale(0.94); opacity: 0.7; }
}

@keyframes breathe-b {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate3d(-11vw, 10vh, 0) scale(1.2); opacity: 1; }
  100% { transform: translate3d(4vw, -5vh, 0) scale(0.9); opacity: 0.65; }
}

@media (min-width: 720px) {
  body { font-size: 16.5px; }
}

/* ------------------------------------------------------------ language */

:lang(zh) { letter-spacing: 0; line-height: 1.85; }

:lang(zh) h1, :lang(zh) h2, :lang(zh) h3, :lang(zh) .display {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
  font-style: normal;
}

:lang(zh) em, :lang(zh) .soul { font-style: normal; font-weight: 500; color: var(--accent); }

:lang(de) p { hyphens: auto; }

/* ------------------------------------------------------------ typography */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 355;
  font-variation-settings: 'opsz' 130, 'SOFT' 60;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); line-height: 1.32; }

em, .soul {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 355;
  color: var(--accent);
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.muted { color: var(--muted); }

.price {
  font-family: var(--font-display);
  font-weight: 420;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.subline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 1.15rem;
  color: var(--muted);
}

:lang(zh) .subline { font-family: var(--font-body); font-style: normal; font-size: 1.05rem; }

a { color: var(--accent); text-decoration: none; }

.link-underline {
  color: var(--ink);
  font-weight: 450;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(236, 234, 228, 0.35);
  padding-bottom: 4px;
  transition: border-color 0.25s ease-out, color 0.25s ease-out;
}

.link-underline:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ------------------------------------------------------------ layout */

.container { max-width: 1160px; margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(80px, 11vh, 140px) 0; }
.section-tight { padding: clamp(52px, 7vh, 92px) 0; }
.section-soft { background: rgba(255, 255, 255, 0.045); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vh, 64px); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .subline { margin-top: 16px; }

.hairline-top { border-top: 1px solid var(--hairline); }
.hairline-bottom { border-bottom: 1px solid var(--hairline); }

/* ------------------------------------------------------------ header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

/* over the photo hero: fully transparent chrome with light type */
.site-header.over-photo { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.over-photo .wordmark,
.site-header.over-photo .main-nav a,
.site-header.over-photo .cart-link,
.site-header.over-photo .nav-toggle { color: #F5F2EC; }
.site-header.over-photo .main-nav a:hover,
.site-header.over-photo .main-nav a.active { color: #fff; border-bottom-color: #fff; }
.site-header.over-photo .lang-switch { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.site-header.over-photo .lang-switch button { color: rgba(245, 242, 236, 0.75); }
.site-header.over-photo .lang-switch button:hover { color: #fff; }
.site-header.over-photo .lang-switch button.active { color: #242E36; background: var(--accent); }
.site-header.over-photo .cart-link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.site-header.over-photo .cart-count { background: var(--accent); color: #242E36; }

@media (max-width: 880px) {
  .site-header.over-photo .main-nav { background: rgba(30, 39, 46, 0.94); }
  .site-header.over-photo .main-nav a { border-bottom-color: rgba(255, 255, 255, 0.12); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 385;
  font-size: 1.18rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); }

.main-nav a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 450;
  letter-spacing: 0.04em;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease-out;
}

.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

.header-tools { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: var(--glass-border);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch button {
  background: none;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 5px 11px;
  cursor: pointer;
  position: relative;
}

.lang-switch button::before { content: ''; position: absolute; inset: -6px; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { color: #242E36; background: var(--accent); }
.lang-switch .lang-sep { display: none; }

.cart-link { position: relative; display: inline-flex; color: var(--ink); padding: 8px; border-radius: 999px; }
.cart-link::before { content: ''; position: absolute; inset: -6px; }
.cart-link:hover { color: var(--accent); }
.cart-link svg { width: 23px; height: 23px; }

.cart-count {
  position: absolute;
  top: -1px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #242E36;
  font-size: 10.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.empty { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 8px; position: relative; }
.nav-toggle::before { content: ''; position: absolute; inset: -6px; }
.nav-toggle svg { width: 24px; height: 24px; display: block; }

@media (max-width: 880px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(30, 39, 46, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--hairline);
    padding: 8px var(--gutter) 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 15px 0; font-size: 16.5px; border-bottom: 1px solid var(--hairline); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
}

/* ------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 34px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #242E36;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease-out, color 0.25s ease-out,
              border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: var(--shadow-2); }
.btn:disabled { opacity: 0.4; cursor: default; box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); box-shadow: none; }

.btn-quiet {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--hairline);
  color: var(--ink);
}

.btn-quiet:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--muted); color: var(--ink); box-shadow: var(--shadow-1); }

.btn-danger { background: var(--error); border-color: var(--error); color: #242E36; }
.btn-danger:hover { background: #8c3323; border-color: #8c3323; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
.btn:focus-visible, .lang-switch button:focus-visible { border-radius: 999px; }

/* ------------------------------------------------------------ cards & grids */

.card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.5vw, 30px);
}

@media (min-width: 860px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 12px 12px 22px;
  color: var(--ink);
  transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
}

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

.product-card .plate { aspect-ratio: 4 / 5; margin-bottom: 18px; }

.product-card h3 { font-size: 1.18rem; font-weight: 380; padding: 0 10px; }

.product-card .scent-line { font-size: 13.5px; color: var(--muted); margin: 7px 0 15px; min-height: 2.6em; padding: 0 10px; }

.product-card .price { font-size: 1.02rem; margin-top: auto; padding: 0 10px; }

/* typographic pastel plate: the product number is the image */
.plate-typo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(170deg, var(--plate-tint, var(--tint-1)), rgba(255, 255, 255, 0.05));
}

.plate-typo .plate-no {
  font-family: var(--font-display);
  font-weight: 330;
  font-variation-settings: 'opsz' 130;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  color: var(--ink);
  letter-spacing: 0;
}

.plate-typo .plate-rule { width: 26px; height: 1px; background: var(--ink); opacity: 0.35; }

.plate-typo .plate-caption {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------ chips */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 450;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.22s ease-out;
}

.chip:hover { border-color: var(--muted); color: var(--ink); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #242E36; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------ forms */

label { display: block; font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 8px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-s);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.22s ease-out, box-shadow 0.22s ease-out, background 0.22s ease-out;
}

input:hover, select:hover, textarea:hover { border-color: rgba(255, 255, 255, 0.3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 170, 129, 0.18);
}

textarea { resize: vertical; min-height: 96px; }

.field { margin-bottom: 18px; }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.form-error { color: var(--error); font-size: 14px; margin-top: 8px; font-weight: 500; }

/* ------------------------------------------------------------ rows */

.row-list { border-top: 1px solid var(--hairline); }

.row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hairline);
}

/* ------------------------------------------------------------ steps */

.step-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }

.step-num {
  width: 42px;
  height: 42px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 380;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out;
}

.step-num.done { background: var(--accent); border-color: var(--accent); color: #242E36; }

/* ------------------------------------------------------------ qty stepper */

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
}

.qty button:hover { background: var(--accent-soft); color: var(--accent-dark); }
.qty .qty-num { min-width: 30px; text-align: center; font-variant-numeric: tabular-nums; font-weight: 500; }

/* ------------------------------------------------------------ spinner */

.ring-spin {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--hairline);
  border-top-color: var(--accent);
  animation: ringspin 0.9s linear infinite;
}

.ring-spin svg { display: none; }

@keyframes ringspin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------ notices */

.notice {
  border: var(--glass-border);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  font-size: 14.5px;
}

.notice.error { border-left-color: var(--error); color: var(--error); }

/* ------------------------------------------------------------ dialog */

dialog, .dialog {
  border: var(--glass-border);
  border-radius: var(--radius);
  background: var(--surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dialog);
  padding: 30px;
}

dialog::backdrop { background: rgba(0, 0, 0, 0.6); }

/* ------------------------------------------------------------ footer */

.site-footer {
  border-top: 1px solid var(--hairline);
  background: rgba(0, 0, 0, 0.18);
  padding: clamp(48px, 7vh, 80px) 0 40px;
  margin-top: clamp(80px, 11vh, 140px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.site-footer h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.site-footer a { color: var(--ink); display: inline-block; padding: 4px 0; font-size: 15px; font-weight: 400; }
.site-footer a:hover { color: var(--accent); }
.footer-note { font-size: 13px; color: var(--muted); border-top: 1px solid var(--hairline); padding-top: 24px; }

/* ------------------------------------------------------------ reveal */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ hero */

/* full-bleed product photography with light type over its open left side */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  margin-top: -76px;      /* image runs behind the transparent header */
  padding: 140px 0 90px;
  background: url('/assets/img/hero.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(18, 26, 36, 0.62) 0%,
    rgba(18, 26, 36, 0.34) 46%,
    rgba(18, 26, 36, 0.05) 78%);
}

.hero-grid { position: relative; max-width: 620px; }

.hero .eyebrow { color: rgba(245, 242, 236, 0.75); }
.hero h1 { color: #F7F5F0; }
.hero h1 em, .hero h1 .soul { color: var(--accent-dark); }
.hero-copy p { max-width: 46ch; color: rgba(240, 238, 232, 0.82); margin: 28px 0 42px; font-size: 1.12rem; font-weight: 400; }

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: clamp(34px, 5vh, 52px); }

.diy-teaser-grid .btn { margin-top: 30px; }


@media (max-width: 720px) {
  .hero { min-height: 74vh; padding: 130px 0 70px; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(18, 26, 36, 0.6) 0%,
      rgba(18, 26, 36, 0.42) 60%,
      rgba(18, 26, 36, 0.2) 100%);
  }
}

.diy-teaser-grid { max-width: 640px; margin: 0 auto; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before, body::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-spin { animation-duration: 2s; }
  .product-card:hover { transform: none; }
}

/* ------------------------------------------------------------ tables */

table.ledger { width: 100%; border-collapse: collapse; }
table.ledger th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--hairline);
}
table.ledger td { padding: 13px 12px 13px 0; border-bottom: 1px solid var(--hairline); font-size: 14.5px; vertical-align: top; }

/* ------------------------------------------------------------ helpers */

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

.text-center { text-align: center; }
.stack-s > * + * { margin-top: 12px; }
.stack-m > * + * { margin-top: 24px; }
.stack-l > * + * { margin-top: 48px; }
