:root {
  --ink: #18201b;
  --muted: #5e685f;
  --leaf: #235c3a;
  --leaf-soft: #d8ead9;
  --gold: #c7922b;
  --coral: #d66a4a;
  --mist: #f4f8ef;
  --paper: #fffdf7;
  --line: rgba(24, 32, 27, 0.12);
  --shadow: 0 22px 55px rgba(34, 67, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 234, 217, 0.9), transparent 34rem),
    linear-gradient(180deg, #fff9ec 0%, #f4f8ef 44%, #fffdf7 100%);
  font-family: "Manrope", Arial, sans-serif;
}

::selection {
  background: rgba(199, 146, 43, 0.28);
}

:focus-visible {
  outline: 3px solid rgba(214, 106, 74, 0.55);
  outline-offset: 4px;
}

section,
footer {
  scroll-margin-top: 92px;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 13px;
  text-decoration: none;
  transition: 180ms ease;
}

.site-nav a:hover {
  background: var(--leaf-soft);
  border-color: rgba(35, 92, 58, 0.18);
  color: var(--leaf);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(199, 146, 43, 0.34), transparent 20rem),
    radial-gradient(circle at 78% 36%, rgba(214, 106, 74, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(24, 32, 27, 0.96), rgba(35, 92, 58, 0.8));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, #f4f8ef 0%, transparent 100%);
  z-index: -1;
}

.hero-content {
  color: #fffdf7;
  max-width: 840px;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.25);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.18);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-kicker img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: #fffdf7;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  max-width: 780px;
  margin-top: 26px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

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

.primary-btn,
.secondary-btn,
.mini-calendar-btn,
.breath-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  background: var(--gold);
  color: #231806;
  padding: 13px 22px;
  box-shadow: 0 12px 28px rgba(199, 146, 43, 0.26);
}

.secondary-btn {
  background: rgba(255, 253, 247, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fffdf7;
  padding: 13px 22px;
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.secondary-btn:hover,
.mini-calendar-btn:hover,
.breath-btn:hover {
  transform: translateY(-2px);
}

.countdown-card {
  justify-self: end;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-eyebrow,
.section-kicker,
.pill {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.timer-grid div {
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  text-align: center;
}

.timer-grid strong {
  display: block;
  color: var(--leaf);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.timer-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 3px;
}

.countdown-card p {
  color: var(--muted);
  margin: 18px 0 0;
}

.intro-section,
.split-feature,
.breath-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 96px);
}

.quote-panel,
.feature-image,
.breath-container,
.compact-card,
.poster-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(26px, 5vw, 54px);
}

.quote-mark {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.quote-source {
  color: var(--muted);
  font-weight: 800;
  margin: 22px 0 0;
}

.intro-copy h2,
.feature-copy h2,
.breath-copy h2,
.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.intro-copy p,
.feature-copy p,
.breath-copy p,
.poster-info p,
.compact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 96px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-strip article {
  background: #fffdf7;
  padding: clamp(20px, 4vw, 34px);
}

.stats-strip strong {
  display: block;
  color: var(--leaf);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.stats-strip span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 6px;
}

.split-feature {
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
}

.feature-image {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(216, 234, 217, 0.8), rgba(255, 253, 247, 0.9)),
    #fffdf7;
}

.feature-image img {
  width: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  margin: auto;
  border-radius: 50%;
  background: #fffdf7;
}

.image-placeholder,
.poster-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(35, 92, 58, 0.36);
  background:
    linear-gradient(135deg, rgba(216, 234, 217, 0.88), rgba(255, 253, 247, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(35, 92, 58, 0.05) 12px 24px);
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.portrait-placeholder {
  width: min(280px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.detail-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.detail-list dt {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 7px 0 0;
  font-weight: 800;
}

.poster-section,
.table-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 96px);
}

.section-heading {
  margin-bottom: 28px;
}

.centered {
  text-align: center;
}

.poster-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(35, 92, 58, 0.38) transparent;
}

.poster-grid::-webkit-scrollbar {
  height: 8px;
}

.poster-grid::-webkit-scrollbar-thumb {
  background: rgba(35, 92, 58, 0.34);
  border-radius: 999px;
}

.poster-card {
  flex: 0 0 min(420px, 84vw);
  min-height: 420px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  scroll-snap-align: start;
}

.poster-card.large {
  flex-basis: min(560px, 88vw);
}

.poster-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  border: 0;
  border-radius: 0;
}

.poster-placeholder::before {
  content: "";
  width: 72px;
  height: 72px;
  border: 2px solid rgba(35, 92, 58, 0.34);
  border-radius: 8px;
  position: absolute;
  transform: translateY(-36px) rotate(8deg);
}

.poster-placeholder::after {
  content: "";
  width: 86px;
  height: 48px;
  border-right: 2px solid rgba(35, 92, 58, 0.28);
  border-bottom: 2px solid rgba(35, 92, 58, 0.28);
  position: absolute;
  transform: translateY(-14px) rotate(-8deg);
}

.poster-placeholder span {
  position: relative;
  z-index: 1;
  margin-top: 92px;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(7, 18, 11, 0.76) 100%);
  z-index: -1;
}

.poster-card:hover .poster-placeholder {
  background:
    linear-gradient(135deg, rgba(216, 234, 217, 0.96), rgba(255, 253, 247, 0.9)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(35, 92, 58, 0.07) 12px 24px);
}

.poster-info {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fffdf7;
}

.poster-info span {
  color: #f6c76d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-info h3 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.poster-info p {
  color: rgba(255, 253, 247, 0.82);
  margin-bottom: 0;
}

.card-register {
  align-self: flex-start;
  margin-top: 18px;
  border: 1px solid rgba(255, 253, 247, 0.42);
  border-radius: 999px;
  color: #fffdf7;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.card-register:hover {
  background: rgba(255, 253, 247, 0.14);
  transform: translateY(-2px);
}

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

.compact-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.compact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(34, 67, 45, 0.18);
}

.compact-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.mini-poster-placeholder {
  display: grid;
  place-items: center;
  min-height: 170px;
  margin-top: 18px;
  border: 1px dashed rgba(35, 92, 58, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 234, 217, 0.76), rgba(255, 253, 247, 0.7)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(35, 92, 58, 0.05) 12px 24px);
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f8e9d6;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.event-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.event-table th,
.event-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.event-table th {
  background: #eef6eb;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-table tr:last-child td {
  border-bottom: 0;
}

.event-table td:first-child {
  color: var(--coral);
  font-weight: 900;
}

.event-table tr:hover td {
  background: rgba(216, 234, 217, 0.25);
}

.venue-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 12px;
  white-space: nowrap;
}

button.venue-badge {
  cursor: pointer;
}

.online {
  background: #e9f3ff;
  color: #245c8d;
}

.offline {
  background: #e8f4dc;
  color: var(--leaf);
}

.mini-calendar-btn {
  min-height: 36px;
  background: var(--leaf);
  color: #fffdf7;
  padding: 8px 14px;
}

.register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.register-link {
  border: 1px solid rgba(199, 146, 43, 0.34);
  background: #fff4da;
  color: #7a5211;
}

.register-link {
  align-self: flex-start;
  margin-top: auto;
}

.register-link:hover {
  transform: translateY(-2px);
}

.breath-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 146, 43, 0.28), transparent 18rem),
    radial-gradient(circle at 20% 88%, rgba(214, 106, 74, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(24, 32, 27, 0.95), rgba(35, 92, 58, 0.84));
  color: #fffdf7;
  transition: background 1.2s ease;
}

.breath-section.complete {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 220, 160, 0.3), transparent 18rem),
    radial-gradient(circle at 20% 88%, rgba(214, 106, 74, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(44, 76, 57, 0.96), rgba(199, 146, 43, 0.72));
}

.breath-section .section-kicker,
.breath-section p {
  color: rgba(255, 253, 247, 0.78);
}

.breath-container {
  display: grid;
  justify-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.2), rgba(255, 253, 247, 0.08)),
    rgba(15, 24, 17, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.breath-visual {
  width: min(410px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.breath-dial {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.24));
}

.dial-track,
.dial-progress {
  fill: none;
  stroke-width: 8;
}

.dial-track {
  stroke: rgba(255, 253, 247, 0.22);
}

.dial-progress {
  stroke: url(#breathGradient);
  stroke-linecap: round;
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
  transform: rotate(-90deg);
  transform-origin: 120px 120px;
  transition: stroke-dashoffset 100ms linear;
}

.mandala {
  fill: rgba(255, 253, 247, 0.1);
  stroke: rgba(255, 253, 247, 0.58);
  stroke-width: 1.3;
  transform: scale(0.92);
  transform-origin: 120px 120px;
  transition: transform 650ms ease;
}

.dial-center {
  fill: rgba(255, 253, 247, 0.18);
  stroke: rgba(255, 253, 247, 0.5);
  stroke-width: 1;
}

.breath-section.active .mandala {
  fill: rgba(255, 253, 247, 0.15);
}

.breath-readout {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 150px;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border-radius: 50%;
  color: #fffdf7;
  text-align: center;
  transform-origin: 100px 140px;
  transform: translate(-50%, -50%);
}

.breath-readout span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breath-readout strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.95;
}

.breath-readout small {
  width: 118px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.breath-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.breath-btn {
  background: #fffdf7;
  color: var(--leaf);
  padding: 13px 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.breath-reset {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fffdf7;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 13px 24px;
  transition: transform 180ms ease, background 180ms ease;
}

.breath-reset:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.breath-section.active .breath-btn {
  background: var(--coral);
  color: #fffdf7;
}

.breath-section.complete .breath-btn {
  background: var(--gold);
  color: #231806;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 96px);
  background: #17241b;
  color: #fffdf7;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer > div img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fffdf7;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
  font-weight: 700;
}

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

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.16), rgba(255, 253, 247, 0.05)),
    rgba(255, 255, 255, 0.06);
  color: #fffdf7;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 199, 109, 0.62);
  background:
    linear-gradient(145deg, rgba(246, 199, 109, 0.2), rgba(255, 253, 247, 0.09)),
    rgba(255, 255, 255, 0.12);
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.arrived-message {
  grid-column: 1 / -1;
  color: var(--leaf);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .intro-section,
  .split-feature,
  .breath-section {
    grid-template-columns: 1fr;
  }

  .countdown-card {
    justify-self: stretch;
  }

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

  .poster-card {
    min-height: 360px;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .site-nav a {
    padding: 8px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-kicker {
    align-items: flex-start;
    border-radius: 8px;
    flex-wrap: wrap;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .timer-grid,
  .detail-list,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .feature-image,
  .breath-container,
  .compact-card {
    padding: 20px;
  }

  .event-table th,
  .event-table td {
    padding: 14px 12px;
  }

  .site-footer > div {
    align-items: flex-start;
  }
}
