:root {
  --ink: #211814;
  --muted: #74645b;
  --paper: #fffaf2;
  --cream: #f7efe2;
  --line: #eadbc4;
  --night: #180f0d;
  --wine: #8f2831;
  --wine-dark: #651c24;
  --amber: #d99a32;
  --gold: #f1c36a;
  --olive: #485b43;
  --shadow: 0 22px 60px rgba(37, 22, 13, 0.18);
  --header-bg: rgba(29, 18, 14, 0.58);
  --header-border: rgba(255, 250, 242, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Assistant", Heebo, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-align: right;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 14px clamp(14px, 3vw, 34px) auto clamp(14px, 3vw, 34px);
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px;
  background: var(--header-bg);
  color: #fff;
  border: 1px solid var(--header-border);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(13, 8, 6, 0.22);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  border-color: rgba(234, 219, 196, 0.88);
  box-shadow: 0 16px 44px rgba(37, 22, 13, 0.16);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.trust-grid,
.panel-head,
.summary,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  padding-inline-end: 8px;
}

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

.main-nav {
  width: max-content;
  margin: 0 auto;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 800;
}

.site-header.is-scrolled .main-nav,
.site-header.nav-active .main-nav {
  background: rgba(33, 24, 20, 0.05);
  color: var(--muted);
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(241, 195, 106, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus,
.site-header.nav-active .main-nav a:hover,
.site-header.nav-active .main-nav a:focus {
  background: #fff3d9;
  color: var(--wine);
}

.header-actions {
  justify-content: end;
  gap: 10px;
  white-space: nowrap;
}

.header-cta,
.header-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.header-cta {
  background: var(--gold);
  color: #211814;
}

.header-account {
  background: rgba(255, 250, 242, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.site-header.is-scrolled .header-account,
.site-header.nav-active .header-account {
  background: rgba(33, 24, 20, 0.07);
  color: var(--wine);
  border-color: rgba(143, 40, 49, 0.18);
}

.header-cta:hover,
.header-account:hover {
  background: #ffd985;
  color: #211814;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.12);
  color: currentColor;
  padding: 11px;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  background: rgba(33, 24, 20, 0.07);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("../images/intro-bg.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 15, 13, 0.24), rgba(24, 15, 13, 0.9) 52%, rgba(24, 15, 13, 0.92)),
    linear-gradient(180deg, rgba(24, 15, 13, 0.34), rgba(24, 15, 13, 0.08) 44%, rgba(24, 15, 13, 0.84));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  justify-content: start;
  padding: 146px 0 76px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(33px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 2.4vw, 27px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover,
.header-cta:hover,
.header-account:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 16px 36px rgba(143, 40, 49, 0.32);
}

.primary:hover {
  background: var(--wine-dark);
}

.glass {
  background: rgba(255, 250, 242, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 250, 242, 0.32);
}

.dark {
  background: var(--night);
  color: #fff;
}

.section-copy p,
.media-layout p {
  color: var(--muted);
  font-size: 18px;
}

.compact {
  min-height: 44px;
  padding: 0 18px;
}

.next-event-band {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.next-event-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(240px, 1.3fr) minmax(170px, 0.9fr) minmax(130px, 0.7fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  border: 1px solid rgba(234, 219, 196, 0.92);
  box-shadow: var(--shadow);
}

.next-event-card span,
.event-meta small {
  display: block;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.next-event-card strong {
  display: block;
  margin-top: 2px;
  font-size: 28px;
  line-height: 1.05;
}

.next-event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.event-meta {
  padding-inline-start: 18px;
  border-inline-start: 1px solid var(--line);
}

.event-meta b {
  display: block;
  margin-top: 2px;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.trust-grid {
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-grid div {
  flex: 1;
  min-height: 82px;
  padding: 12px 18px;
  border-inline-start: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-inline-start: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 19px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.about {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.about-grid,
.register-grid,
.updates-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.media-layout {
  display: grid;
  gap: 28px;
}

.image-stack {
  position: relative;
  min-height: 430px;
}

.image-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-float {
  position: absolute;
  width: min(46%, 190px);
  right: -18px;
  bottom: -26px;
  border-radius: 8px;
  filter: drop-shadow(0 18px 30px rgba(24, 15, 13, 0.28));
}

.date-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.date-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 15, 13, 0.82), rgba(24, 15, 13, 0.48), rgba(24, 15, 13, 0.88)),
    url("../images/gallery/2.jpg") center / cover;
  opacity: 0.92;
}

.date-layout-soft {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.date-copy {
  max-width: 820px;
}

.date-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.date-cards article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.91);
  color: var(--ink);
  border: 1px solid rgba(255, 250, 242, 0.52);
  box-shadow: 0 18px 44px rgba(13, 8, 6, 0.18);
}

.date-cards span {
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
}

.date-cards strong {
  margin-top: 14px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.date-cards small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.register-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.register-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 15, 13, 0.86), rgba(24, 15, 13, 0.72)),
    url("../images/gallery/2.jpg") center / cover;
}

.register-grid {
  position: relative;
  z-index: 1;
}

.register-centered {
  grid-template-columns: 1fr;
  gap: 34px;
}

.register-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.register-centered .register-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.register-centered .register-intro p {
  max-width: 820px;
  margin-inline: auto;
  font-size: 21px;
}

.account-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.14);
  color: var(--gold);
  border: 1px solid rgba(255, 250, 242, 0.24);
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.account-link:hover,
.account-link:focus {
  background: rgba(255, 250, 242, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.register-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.register-form-large {
  width: min(100%, 1040px);
  margin: 0 auto;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
}

input:focus,
select:focus {
  outline: 3px solid rgba(217, 154, 50, 0.22);
  border-color: var(--amber);
}

.name-row select {
  padding-inline-start: 42px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--wine) 50%),
    linear-gradient(135deg, var(--wine) 50%, transparent 50%);
  background-position:
    left 20px center,
    left 12px center;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.names-panel {
  padding: 22px;
  border-radius: 8px;
  background: #fff5e5;
  border: 1px solid var(--line);
}

.panel-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-head span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.panel-head strong {
  display: block;
  font-size: 22px;
}

.text-button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.name-rows {
  display: grid;
  gap: 12px;
}

.name-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(130px, 0.55fr) minmax(220px, 1fr) 82px;
  gap: 12px;
}

.remove-name {
  border: 0;
  border-radius: 6px;
  background: #ead1cb;
  color: var(--wine);
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.summary {
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--night);
  color: #fff;
  font-size: 22px;
}

.consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.submit {
  width: 100%;
  min-height: 58px;
  font-size: 21px;
}

.media-section {
  background: var(--cream);
}

.media-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

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

.video-card {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 12px 4px 2px;
  font-size: 19px;
  line-height: 1.35;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.updates {
  padding: clamp(70px, 8vw, 104px) 0;
  background: var(--paper);
}

.updates-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.98)),
    url("../images/register-bg4.jpg") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.updates-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.updates-form input[type="email"],
.updates-form button {
  grid-column: span 2;
}

.footer {
  padding: 28px 0;
  background: var(--night);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-inner span {
  color: #fff;
  font-weight: 900;
}

.footer-credit {
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px dashed rgba(241, 195, 106, 0.62);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-credit:hover,
.footer-credit:focus {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.help-bubble {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px 0 14px;
  border-radius: 999px;
  background: #1f3446;
  color: #fff;
  border: 1px solid rgba(241, 195, 106, 0.78);
  box-shadow: 0 16px 38px rgba(13, 8, 6, 0.28);
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.help-bubble:hover,
.help-bubble:focus {
  background: #263f54;
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(13, 8, 6, 0.34);
}

.help-bubble b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 19px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

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

  .main-nav {
    display: none;
  }

  .site-header.nav-active {
    grid-template-columns: auto 1fr auto;
  }

  .site-header.nav-active .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 4px 0 0;
    padding: 10px;
    border-radius: 10px;
    background: rgba(33, 24, 20, 0.06);
  }

  .site-header.nav-active .main-nav a {
    min-height: 44px;
    justify-content: center;
    border-radius: 8px;
  }

  .site-header.nav-active .header-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-active .header-actions a {
    flex: 1;
  }

  .hero-layout,
  .about-grid,
  .register-grid,
  .updates-card {
    grid-template-columns: 1fr;
  }

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

  .register-centered .register-intro {
    text-align: right;
  }

  .name-row {
    grid-template-columns: 1fr 140px 1fr 82px;
  }

  .hero {
    min-height: auto;
  }

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

  .next-event-card p,
  .next-event-card .btn {
    grid-column: span 2;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .date-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    inset: 10px 10px auto 10px;
    min-height: 62px;
    padding: 8px;
    gap: 8px;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .header-cta,
  .header-account {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .brand {
    gap: 7px;
    padding-inline-end: 0;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 98px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .hero-layout {
    padding: 116px 0 58px;
  }

  .hero-actions,
  .next-event-card,
  .panel-head,
  .summary {
    align-items: stretch;
    flex-direction: column;
  }

  .next-event-band {
    margin-top: -18px;
  }

  .next-event-card {
    display: flex;
  }

  .event-meta {
    padding-inline-start: 0;
    padding-top: 12px;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .btn {
    width: 100%;
  }

  .image-stack {
    min-height: 330px;
  }

  .image-main {
    height: 310px;
  }

  .image-float {
    width: 145px;
    right: 12px;
  }

  .two-cols,
  .name-row,
  .updates-form,
  .updates-form input[type="email"],
  .updates-form button {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .remove-name {
    min-height: 42px;
  }

  .help-bubble {
    left: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px 0 12px;
    font-size: 19px;
  }

  .help-bubble b {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}

/* Production thank-you states */
.thanks-page main {
  min-height: 100vh;
}
.thanks-section {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 150px 0 84px;
  overflow: hidden;
  background: var(--night);
}
.thanks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 15, 13, 0.90), rgba(24, 15, 13, 0.62), rgba(24, 15, 13, 0.82)),
    url("../images/intro-bg.png") center / cover no-repeat;
  transform: scale(1.02);
}
.thanks-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}
.thanks-card-new {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
}
.status-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  background: #fff3d9;
  color: var(--wine);
  border: 1px solid rgba(143, 40, 49, 0.18);
}
.status-mark.success {
  background: #eef8ef;
  color: #26733a;
  border-color: rgba(38, 115, 58, 0.22);
}
.status-mark.error {
  background: #fff0ef;
  color: #a3202b;
  border-color: rgba(163, 32, 43, 0.22);
}
.status-mark.pending {
  background: #fff7df;
  color: #9a6515;
  border-color: rgba(154, 101, 21, 0.22);
}
.thanks-card-new h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  color: var(--wine-dark);
}
.thanks-card-new p {
  margin: 0 auto 16px;
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}
.thanks-meta-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  margin: 6px 0 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--wine);
  font-weight: 900;
}
.thanks-actions-new {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.thanks-actions-new .btn {
  min-width: 150px;
}
@media (max-width: 700px) {
  .thanks-section {
    padding-top: 128px;
  }
  .thanks-actions-new .btn {
    width: 100%;
  }
}