/* ============================================================
   ACADEMY — Sound, composed.
   Design system: ivory / bone / champagne. Quiet luxury.
   ============================================================ */

:root {
  --bg: #f5f2ea;
  --bg-deep: #ede8dc;
  --ink: #191713;
  --ink-soft: #7a7466;
  --hairline: rgba(25, 23, 19, 0.14);
  --hairline-soft: rgba(25, 23, 19, 0.08);
  --gold: #a98f5f;
  --gold-soft: #c9b98f;

  --font-display: "Cormorant Garamond", serif;
  --font-mark: "Italiana", serif;
  --font-ui: "Manrope", sans-serif;

  --ease-lux: cubic-bezier(0.62, 0.02, 0.18, 1);
}

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

html { scrollbar-width: thin; scrollbar-color: rgba(25,23,19,.25) transparent; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.9s var(--ease-lux);
}

body.lock { overflow: hidden; }

::selection { background: var(--gold-soft); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
li { list-style: none; }

/* On devices with a fine pointer we hide the native cursor (custom one takes over) */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input { cursor: none; }
}

/* ------------------------------------------------------------
   Fixed scaffolding (outside the smooth-scroll wrapper)
   z-map: wordmark 1 · canvas 2 · content 3 · vignette 28 · grain 29
          nav 32 · progress 33 · preloader 60 · cursor 70
------------------------------------------------------------ */

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

#smooth-wrapper { position: relative; z-index: 3; }
#smooth-content { will-change: transform; }

.vignette {
  position: fixed; inset: 0; z-index: 28; pointer-events: none;
  background: radial-gradient(ellipse 120% 95% at 50% 42%, transparent 58%, rgba(31, 28, 22, 0.07) 100%);
}

.grain {
  position: fixed; inset: -8%; z-index: 29; pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- Custom cursor ---------------- */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 70;
  pointer-events: none; border-radius: 50%;
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--ink);
}
.cursor-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1px solid rgba(169, 143, 95, 0.65);
  transition: transform 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux), background-color 0.45s var(--ease-lux);
}
body.cursor-hover .cursor-ring {
  transform: scale(1.7);
  border-color: rgba(169, 143, 95, 0.95);
  background: rgba(201, 185, 143, 0.12);
}
body.cursor-hover .cursor-dot { transform: scale(0.4); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------------- Preloader ---------------- */

.preloader {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.preloader-mark {
  font-family: var(--font-mark);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  display: flex;
}
.preloader-mark span { display: inline-block; opacity: 0; transform: translateY(26px); }
.preloader-line {
  width: 164px; height: 1px; background: var(--hairline);
  position: relative; overflow: hidden;
}
.preloader-line i {
  position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left center; display: block;
}
.preloader-sub {
  font-size: 10px; letter-spacing: 0.34em; text-indent: 0.34em;
  text-transform: uppercase; color: var(--ink-soft); opacity: 0;
}

/* ---------------- Progress hairline ---------------- */

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 33;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
}

/* ---------------- Navigation ---------------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 32;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(24px, 4.5vw, 64px);
  transition: background-color 0.6s var(--ease-lux), backdrop-filter 0.6s var(--ease-lux),
              box-shadow 0.6s var(--ease-lux), padding 0.6s var(--ease-lux);
}
.nav.scrolled {
  padding-top: 16px; padding-bottom: 16px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--hairline-soft);
}
.nav > * { opacity: 0; }

.nav-logo {
  font-family: var(--font-mark);
  font-size: 19px; letter-spacing: 0.34em;
  display: inline-block;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav-links a {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color 0.4s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.5s var(--ease-lux);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px;
  border: 1px solid rgba(25, 23, 19, 0.28);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: -1px;
  background: var(--ink); border-radius: 999px;
  transform: translateY(102%);
  transition: transform 0.55s var(--ease-lux);
  z-index: -1;
}
.btn:hover { color: var(--bg); border-color: var(--ink); }
.btn:hover::before { transform: translateY(0); }

.btn--solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--solid::before { background: var(--gold); }
.btn--solid:hover { color: var(--ink); border-color: var(--gold); }

.btn--ghost { border-color: transparent; padding-left: 0; padding-right: 0; color: var(--ink-soft); }
.btn--ghost::before { display: none; }
.btn--ghost:hover { color: var(--ink); }
.btn--ghost .arrow { transition: transform 0.45s var(--ease-lux); }
.btn--ghost:hover .arrow { transform: translateY(3px); }

/* ---------------- Shared section grammar ---------------- */

.sec {
  position: relative;
  padding: 22vh clamp(24px, 6vw, 88px);
}

/* chapters hold their pose long enough to be read */
#design, #materials, #sound {
  min-height: 145vh;
  display: flex;
  align-items: center;
  padding-top: 14vh;
  padding-bottom: 14vh;
}
#materials .half--right { margin-left: auto; }
#sound .sound-inner { width: 100%; }

.kicker {
  display: flex; align-items: center; gap: 16px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 4vh, 52px);
}
.kicker .num { color: var(--gold); }
.kicker::after {
  content: ""; height: 1px; width: 64px;
  background: var(--hairline); display: inline-block;
}

h2.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
h2.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.body-copy {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 17.5px);
  font-weight: 400;
  max-width: 46ch;
  margin-top: clamp(24px, 3.5vh, 44px);
}
.body-copy + .body-copy { margin-top: 18px; }

.half { width: min(560px, 46%); }
.half--right { margin-left: auto; }

/* soft warm auras behind the product per section */
.aura {
  position: absolute; width: 56vw; height: 56vw;
  max-width: 820px; max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 190, 152, 0.32) 0%, rgba(206, 190, 152, 0) 64%);
  pointer-events: none;
  z-index: -1;
}

.ghost-word {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(90px, 14vw, 230px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 23, 19, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ---------------- Hero ---------------- */

.hero-wordmark {
  position: fixed;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-mark);
  font-size: clamp(72px, 16.5vw, 290px);
  letter-spacing: 0.045em;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink);
  pointer-events: none;
}
.hero-wordmark .char-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-wordmark .char { display: inline-block; }

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 4.5vw, 64px) 6.5vh;
}

.hero-grid {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero-intro { max-width: 380px; }
.hero-intro .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-intro p {
  font-size: 13.5px; line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 34ch;
}
.hero-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-aside {
  text-align: right;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2.3;
}
.hero-aside .gold { color: var(--gold); }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 5vh;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 9.5px; letter-spacing: 0.4em; text-indent: 0.4em;
  text-transform: uppercase; color: var(--ink-soft);
}
.scroll-hint i {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: hint 2.4s var(--ease-lux) infinite;
  transform-origin: top center;
}
@keyframes hint {
  0% { transform: scaleY(0); transform-origin: top center; }
  45% { transform: scaleY(1); transform-origin: top center; }
  55% { transform: scaleY(1); transform-origin: bottom center; }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}

[data-hero-fade] { opacity: 0; }

/* ---------------- Marquee ---------------- */

.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track > div { display: flex; align-items: center; flex-shrink: 0; }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 0 34px;
  white-space: nowrap;
}
.marquee span em { font-style: italic; color: var(--gold); }
.marquee .dot { width: 5px; height: 5px; padding: 0; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- 02 Materials: callouts ---------------- */

.callout {
  position: fixed;
  top: 0; left: 0; z-index: 4;
  display: flex; flex-direction: row-reverse; align-items: center; gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-lux);
}
.callout.visible { opacity: 1; }
.co-dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(201,185,143,.25);
  flex-shrink: 0;
}
.co-line { width: 46px; height: 1px; background: var(--hairline); flex-shrink: 0; }
.co-text {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-right: 12px;
  white-space: nowrap;
}

.mat-list { margin-top: clamp(32px, 5vh, 56px); border-top: 1px solid var(--hairline); }
.mat-list li {
  display: flex; align-items: baseline; gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hairline);
}
.mat-list .idx {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--gold);
}
.mat-list .name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 27px);
}
.mat-list .note {
  margin-left: auto;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------------- 03 Sound: specs ---------------- */

.sound-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sound-inner .kicker { justify-content: center; }
.sound-inner .kicker::after { display: none; }
.sound-inner h2 { max-width: 16ch; }
.sound-inner .body-copy { text-align: center; margin-inline: auto; }

.specs {
  margin-top: clamp(64px, 12vh, 130px);
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.spec {
  padding: clamp(28px, 4vh, 44px) 18px 8px;
  border-right: 1px solid var(--hairline);
  text-align: center;
}
.spec:last-child { border-right: 0; }
.spec-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
}
.spec-unit { font-size: 0.38em; color: var(--gold); letter-spacing: 0.08em; }
.spec-label {
  margin-top: 14px;
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------------- 04 Editions (pinned) ---------------- */

.editions { padding: 0; }
.editions-stage {
  height: 100vh; height: 100svh;
  position: relative;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.ed-top {
  padding-top: 110px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.ed-top .kicker { margin-bottom: 0; }
.ed-index {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.ed-index b { font-weight: 500; color: var(--ink); }

.ed-bottom {
  padding-bottom: 9vh;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}

.ed-names { position: relative; height: clamp(90px, 12vw, 190px); flex: 1 1 auto; min-width: 0; }
.ed-name {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

.ed-meta {
  text-align: right; flex-shrink: 0; max-width: 320px;
  background: color-mix(in srgb, var(--bg) 58%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px 26px;
}
.ed-desc {
  font-size: 13px; color: var(--ink-soft); line-height: 1.7;
  min-height: 3.4em;
  margin-bottom: 18px;
}
.ed-price {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.ed-swatches { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 26px; }
.ed-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform 0.4s var(--ease-lux);
}
.ed-swatch::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid var(--gold);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.4s, transform 0.5s var(--ease-lux);
}
.ed-swatch.active::after { opacity: 1; transform: scale(1); }
.ed-swatch:hover { transform: translateY(-3px); }

/* ---------------- Manifesto ---------------- */

.manifesto {
  min-height: 110vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 66px);
  line-height: 1.28;
  max-width: 22ch;
}
.manifesto-text .mw { display: inline-block; }
.manifesto-sig {
  margin-top: clamp(36px, 6vh, 64px);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.34em; text-indent: 0.34em;
  text-transform: uppercase; color: var(--gold);
}

/* ---------------- Finale / Reserve ---------------- */

.finale {
  position: relative;
  background: linear-gradient(to bottom, transparent, var(--bg-deep) 26%);
  padding-bottom: 0;
}
.finale-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-bottom: 14vh;
}
.finale h2 { max-width: none; }
.finale .body-copy { text-align: center; }

.reserve-form {
  margin-top: clamp(36px, 6vh, 60px);
  display: flex; align-items: center;
  width: min(560px, 100%);
  border: 1px solid rgba(25, 23, 19, 0.25);
  border-radius: 999px;
  padding: 6px 6px 6px 28px;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  transition: border-color 0.5s;
}
.reserve-form:focus-within { border-color: var(--gold); }
.reserve-form input {
  flex: 1; min-width: 0;
  background: none; border: 0; outline: 0;
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--ink);
  padding: 12px 0;
}
.reserve-form input::placeholder { color: var(--ink-soft); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; }
.form-note {
  margin-top: 18px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-note.success { color: var(--gold); }

/* ---------------- Footer ---------------- */

.footer {
  border-top: 1px solid var(--hairline);
  padding: 64px clamp(24px, 6vw, 88px) 0;
  overflow: hidden;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  padding-bottom: 72px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 11.5px; color: var(--ink-soft); max-width: 26ch; line-height: 1.9;
}
.footer-col h4 {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 12.5px; color: var(--ink-soft);
  padding: 5px 0;
  transition: color 0.35s, transform 0.45s var(--ease-lux);
}
.footer-col a:hover { color: var(--ink); transform: translateX(6px); }

.footer-legal {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--hairline-soft);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-mark {
  font-family: var(--font-mark);
  font-size: clamp(84px, 17vw, 320px);
  line-height: 0.74;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 23, 19, 0.16);
  transform: translateY(8%);
  user-select: none;
}

/* ---------------- Reveal primitives ---------------- */

[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1; transform: none; }

.split-line-mask { overflow: hidden; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1024px) {
  .half { width: min(560px, 58%); }
}

@media (max-width: 860px) {
  .sec { padding: 16vh clamp(20px, 6vw, 40px); }
  .nav-links { display: none; }
  .half, .half--right {
    width: 100%;
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 26px 22px;
  }
  .hero-grid { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-aside { text-align: left; }
  .scroll-hint { display: none; }
  .callout { display: none; }
  .specs { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
  .spec { border-bottom: 1px solid var(--hairline); }
  .spec:nth-child(2n) { border-right: 0; }
  .ed-bottom { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 6vh; }
  .ed-meta { text-align: left; }
  .ed-swatches { justify-content: flex-start; }
  .ed-names { width: 100%; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-wordmark { font-size: 16vw; }
  .hero { padding-bottom: 10vh; }
}

/* ---------------- Reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .scroll-hint i { animation: none; }
  html { scroll-behavior: auto; }
}
