:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --max: 1320px;
  --section-pad: 120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.notice-strip {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 24px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.site-header.is-over-hero {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 12px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  white-space: nowrap;
}

.brand-lockup img {
  width: 36px;
  height: 44px;
  object-fit: contain;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-btn);
}

.nav-contact a:hover,
.nav-contact a[aria-current="page"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  line-height: 1.3;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.page-main {
  padding-top: 0;
}

.has-hero .page-main {
  padding-top: 0;
}

.section {
  padding: var(--section-pad) 0;
}

.section-band {
  background: var(--deep);
}

.section-surface {
  background: var(--surface);
}

html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.hero-letterbox {
  padding-top: 24px;
}

.hero-strip {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 48px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  text-align: center;
  width: min(100% - 48px, 820px);
  margin: 0 auto;
  padding-bottom: 64px;
}

.hero-copy p {
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 2rem auto 0;
  border: 0;
}

.page-title-block {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-title-block p {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.cat-bands .cat-band:nth-child(even) {
  direction: rtl;
}

.cat-bands .cat-band:nth-child(even) > * {
  direction: ltr;
}

.cat-band__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cat-band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cat-band__body h2 {
  margin-bottom: 1rem;
}

.cat-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.mission-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-grid h2 {
  margin-bottom: 1.25rem;
}

.mission-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.amenity-block {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.amenity-block h3 {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 20px;
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0.75rem;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  border-left: 1px solid var(--border);
  padding-left: 36px;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--text-muted);
}

.venue-stack {
  padding: 0 0 var(--section-pad);
}

.venue-band {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.venue-band:last-of-type {
  border-bottom: 0;
}

.venue-band__photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  position: relative;
}

.venue-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-band__kicker {
  margin-bottom: 0.75rem;
}

.venue-band h2 {
  margin-bottom: 1rem;
}

.venue-band p {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
}

.venue-overlay-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 28px;
  background: rgba(13, 10, 17, 0.72);
  text-align: left;
}

.venue-overlay-name h2 {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--text);
}

.venue-band--overlay .venue-band__body {
  padding-top: 28px;
}

.premier-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 0 var(--section-pad);
}

.premier-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.premier-row__thumb {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.premier-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premier-row__body {
  text-align: center;
}

.premier-row__body .kicker {
  margin-bottom: 0.5rem;
}

.premier-row__body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 0.75rem;
}

.premier-row__body p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.premier-row__body p:last-child {
  margin-bottom: 0;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  text-align: center;
}

.catalog-close p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.method-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  font-family: var(--font-heading);
  max-width: 100%;
  margin-bottom: 64px;
  color: var(--text);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.method-block h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 1rem;
  color: var(--accent);
}

.method-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.notes-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.notes-stack .notes-band:nth-child(even) {
  direction: rtl;
}

.notes-stack .notes-band:nth-child(even) > * {
  direction: ltr;
}

.notes-band__aside {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.notes-band__aside .kicker {
  margin-bottom: 0.5rem;
}

.notes-band__aside p {
  color: var(--text-muted);
  font-size: 15px;
}

.notes-band__copy h2 {
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}

.notes-band__copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0 var(--section-pad);
}

.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-size: 18px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  line-height: 1.4;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 5px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  color: #e8a0a0;
  font-size: 13px;
  margin: 8px 0 16px;
  min-height: 1.2em;
}

.form-error[hidden] {
  display: none;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.editorial-pad {
  padding-bottom: var(--section-pad);
}

.legal-body {
  padding: 64px 0 var(--section-pad);
  max-width: 820px;
  margin: 0 auto;
}

.legal-body h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 0.75rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 2.5rem 0 1rem;
  color: var(--accent);
}

.legal-body h3 {
  font-size: 20px;
  margin: 1.5rem 0 0.75rem;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--accent);
}

.sitemap-list {
  padding: 48px 0 var(--section-pad);
  max-width: 640px;
  margin: 0 auto;
}

.sitemap-list a {
  display: block;
  padding: 18px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 22px;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-brand-band {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 80px 0 48px;
}

.footer-brand-band .brand-lockup {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 1.25rem;
}

.footer-brand-band .brand-lockup img {
  width: 48px;
  height: 59px;
}

.footer-blurb {
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-independence {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 720px;
  margin-top: 1.5rem;
}

.footer-links-row {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-top {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  align-self: flex-start;
}

.footer-top:hover {
  color: var(--accent);
}

.footer-bottom {
  background: var(--surface-alt);
  padding: 24px;
}

.footer-bottom-inner {
  width: min(100% - 0px, var(--max));
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-inner .cookie-line {
  margin-top: 8px;
}

.footer-bottom-inner button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.footer-bottom-inner button:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 28px 24px 32px;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(110%);
  transition: transform 320ms ease;
}

.consent-banner.is-open {
  transform: translateY(0);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner h2 {
  font-size: 22px;
  margin-bottom: 0.5rem;
}

.consent-banner > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1.25rem;
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-child {
  border-bottom: 0;
}

.consent-cat__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.consent-cat__text span {
  font-size: 12px;
  color: var(--text-muted);
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.consent-switch .slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.2s;
}

.consent-switch input:checked + .slider {
  background: var(--accent-2);
}

.consent-switch input:checked + .slider::before {
  transform: translateX(20px);
}

.consent-switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.consent-actions .btn {
  border: 0;
}

.consent-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}

.consent-link:hover {
  color: var(--accent);
}

.consent-policy {
  display: block;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-banner.is-manage #consent-analytics,
.consent-banner.is-manage #consent-marketing {
  outline: none;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: min(420px, calc(100vw - 48px));
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

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

  .premier-row {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav-center.is-open,
  .nav-contact.is-open {
    display: block;
  }

  .header-inner.is-open {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
  }

  .header-inner.is-open .brand-lockup {
    grid-column: 1;
  }

  .header-inner.is-open .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-inner.is-open .nav-center {
    grid-column: 1 / -1;
    display: block;
    padding: 16px 0 8px;
  }

  .header-inner.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-inner.is-open .nav-contact {
    grid-column: 1 / -1;
    display: block;
    padding-bottom: 12px;
  }

  .cat-band,
  .cat-bands .cat-band:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-grid::before {
    display: none;
  }

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

  .notes-band,
  .notes-stack .notes-band:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .container,
  .hero-strip,
  .header-inner,
  .footer-brand-band,
  .footer-links-row {
    width: min(100% - 32px, var(--max));
  }

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

  .premier-row {
    grid-template-columns: 96px 1fr;
  }

  .premier-row__thumb {
    width: 96px;
    height: 96px;
  }

  .premier-row .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .venue-band__photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .notice-strip {
    font-size: 11px;
    padding: 8px 12px;
    text-align: left;
  }

  .brand-lockup {
    font-size: 15px;
    white-space: normal;
    max-width: calc(100vw - 120px);
  }

  .footer-cols {
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    margin-left: 0;
    width: 100%;
  }

  .contact-form,
  .confirm-panel {
    padding: 24px 18px;
  }

  .premier-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premier-row__thumb {
    margin: 0 auto;
  }
}
