/* About grid */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; padding-bottom: 80px;
}
@media (min-width: 800px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-item {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
}
.about-item .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--ivory);
  border-radius: 50%;
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
}
.about-item h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.02em;
  margin: 0; text-transform: uppercase;
}
.about-item p { margin: 0; font-size: 14px; line-height: 1.55; opacity: 0.85; }

/* Price Now */
.price-now {
  display: grid; grid-template-columns: 1fr;
  background: var(--burgundy); color: var(--ivory);
  border-radius: var(--radius); overflow: hidden;
}
[data-theme="dark"] .price-now { background: var(--card); }
@media (min-width: 800px) { .price-now { grid-template-columns: 1.5fr 1fr; } }
.pn-main {
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 16px;
}
.pn-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.7;
}
.pn-price {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.85; letter-spacing: -0.05em;
}
.pn-hint {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.5;
  opacity: 0.88; max-width: 460px; margin-bottom: 8px;
}
.pn-up {
  flex-shrink: 0; font-family: var(--font-display);
  font-weight: 900; color: var(--blue);
  font-size: 22px; line-height: 1;
}
.pn-main .btn { align-self: flex-start; }
.pn-waves {
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 20px;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(242, 234, 208, 0.18);
}
@media (min-width: 800px) {
  .pn-waves { border-top: 0; border-left: 1px solid rgba(242, 234, 208, 0.18); }
}
.wbars { display: flex; align-items: flex-end; gap: 12px; height: 180px; }
.wbar { flex: 1; border-radius: 3px 3px 0 0; position: relative; }
.wbar.a { height: 38%; background: var(--red); }
.wbar.b { height: 58%; background: repeating-linear-gradient(135deg, rgba(242,234,208,0.24) 0 5px, transparent 5px 11px); }
.wbar.c { height: 78%; background: repeating-linear-gradient(135deg, rgba(242,234,208,0.18) 0 5px, transparent 5px 11px); }
.wbar.d { height: 100%; background: repeating-linear-gradient(135deg, rgba(242,234,208,0.13) 0 5px, transparent 5px 11px); }
.wbar .wnow {
  position: absolute; top: -20px; left: 0;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
}
.wcap {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.65;
}

/* Location */
.location-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; padding-bottom: 80px;
}
@media (min-width: 800px) { .location-grid { grid-template-columns: 1.2fr 1fr; } }
.location-map {
  border-radius: var(--radius);
  min-height: 360px; position: relative; overflow: hidden;
  background: url('../assets/wall.jpg') center/cover no-repeat;
  border: 1px solid var(--line);
  isolation: isolate;
}
.location-map::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(92,10,18,0.6) 0%,
    rgba(92,10,18,0.3) 40%,
    rgba(92,10,18,0.5) 100%);
  z-index: 1;
}
.location-map .pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--red); border: 4px solid var(--ivory);
  border-radius: 50% 50% 50% 0; rotate: -45deg;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 3;
}
.location-map .pin::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 8px; height: 8px; background: var(--ivory);
  border-radius: 50%; transform: translate(-50%, -50%);
}
.location-map .map-link {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--ivory); color: var(--burgundy);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 100px; z-index: 3;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.location-map .map-link:hover { background: var(--red); color: var(--ivory); }
.location-info {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px; padding: 32px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.location-info .place-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em; text-transform: uppercase; margin: 0;
}
.location-info .description { font-size: 14px; line-height: 1.55; opacity: 0.85; }
.location-info .details { display: flex; flex-direction: column; gap: 12px; }
.location-info .details .row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 16px; padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 13px;
}
.location-info .details .row .l {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; padding-top: 2px;
}

/* Bring */
.bring-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--line); padding-bottom: 80px;
}
@media (min-width: 700px) { .bring-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bring-grid { grid-template-columns: repeat(3, 1fr); } }
.bring-item {
  background: var(--bg); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px; transition: background 0.3s ease;
}
.bring-item:hover { background: var(--card); }
.bring-item .check {
  width: 32px; height: 32px;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; margin-bottom: 8px;
}
.bring-item.no .check { border-color: var(--red); color: var(--red); }
.bring-item.opt .check { border-color: var(--blue); color: var(--blue); }
.bring-item h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; letter-spacing: -0.01em;
  text-transform: uppercase; margin: 0;
}
.bring-item p { margin: 0; font-size: 13px; line-height: 1.5; opacity: 0.8; }

/* Final CTA */
.final-cta {
  background: var(--burgundy); color: var(--ivory);
  padding: 100px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.06em; line-height: 0.85;
  text-transform: uppercase; margin: 0 0 24px;
}
.final-cta h2 em {
  font-family: var(--font-letter); font-style: normal; font-weight: 400;
  color: var(--blue); font-size: 1.1em; text-transform: none;
}
.final-cta p {
  font-size: 17px; line-height: 1.5;
  max-width: 560px; margin: 0 auto 40px; opacity: 0.9;
}
.final-cta .meta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.7;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--burgundy); color: var(--ivory);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(242, 234, 208, 0.2);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .info { display: flex; flex-direction: column; gap: 2px; }
.sticky-cta .price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px; letter-spacing: -0.02em;
}
.sticky-cta .lbl {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
}
.sticky-cta .btn-sticky {
  background: var(--red); color: var(--ivory);
  padding: 14px 20px; border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
@media (min-width: 800px) { .sticky-cta { display: none; } }

/* Buy Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 5, 8, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 600px) { .modal-overlay { align-items: center; padding: 24px; } }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); color: var(--fg);
  width: 100%; max-width: 480px;
  border-radius: 16px 16px 0 0;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.4);
}
@media (min-width: 600px) { .modal { border-radius: 16px; } }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head {
  position: sticky; top: 0; z-index: 2;
  background: var(--burgundy); color: var(--ivory);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-head .title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.02em; text-transform: uppercase;
}
.modal-head .sub {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7; margin-top: 3px;
}
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(242,234,208,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-size: 18px; flex-shrink: 0;
  transition: background 0.2s ease;
}
.modal-close:hover { background: rgba(242,234,208,0.15); }
.modal-body { padding: 24px; }
.steps-dots { display: flex; gap: 6px; margin-bottom: 24px; }
.steps-dots .d {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--line); transition: background 0.3s ease;
}
.steps-dots .d.active, .steps-dots .d.done { background: var(--red); }
.step-pane { display: none; }
.step-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.step-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 14px;
}

/* Price fixed row */
.price-fixed {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 16px; margin-bottom: 10px;
  border: 1.5px solid var(--red);
  background: color-mix(in oklab, var(--red) 8%, transparent);
  border-radius: 10px;
}
.price-fixed .pf-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.price-fixed .pf-note {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.6; margin-top: 3px;
}
.price-fixed .pf-price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; letter-spacing: -0.02em; white-space: nowrap;
}

/* Qty stepper */
.qty-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border: 1.5px solid var(--line); border-radius: 10px; margin-top: 8px;
}
.qty-row .ql { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.qty-stepper { display: flex; align-items: center; gap: 16px; }
.qty-stepper button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--burgundy); color: var(--burgundy);
  font-size: 20px; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.qty-stepper button:hover { background: var(--burgundy); color: var(--ivory); }
.qty-stepper .qv {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; min-width: 28px; text-align: center;
}

/* Form fields */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 6px;
}
.field input {
  width: 100%; box-sizing: border-box;
  background: var(--card); color: var(--fg);
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-display); font-size: 16px;
  outline: none; transition: border-color 0.2s ease;
}
.field input:focus { border-color: var(--red); }
.field input::placeholder { opacity: 0.4; }
.field .err {
  color: var(--red); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  margin-top: 5px; display: none;
}
.field.invalid input { border-color: var(--red); }
.field.invalid .err { display: block; }
.field .hint {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.05em;
  opacity: 0.5; margin-top: 5px;
}

/* Summary */
.summary-box {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 18px 20px; margin-bottom: 20px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: 0; }
.summary-row .sl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6;
}
.summary-row .sv { font-weight: 600; text-align: right; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 8px; padding-top: 16px;
  border-top: 2px solid var(--burgundy);
}
.summary-total .tl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.summary-total .tv {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; letter-spacing: -0.03em; color: var(--red);
}

/* Modal actions */
.modal-actions { display: flex; gap: 10px; margin-top: 8px; }
.modal-btn {
  flex: 1; padding: 16px; border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s ease;
}
.modal-btn.primary { background: var(--red); color: var(--ivory); flex: 2; }
.modal-btn.primary:hover { background: var(--burgundy); }
.modal-btn.ghost {
  background: transparent; border: 1.5px solid var(--line); color: var(--fg);
}
.modal-btn.ghost:hover { border-color: var(--burgundy); }
.modal-legal {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.05em;
  opacity: 0.5; text-align: center;
  margin-top: 14px; line-height: 1.5;
}
.modal-legal a { border-bottom: 1px solid currentColor; }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success .big {
  font-family: var(--font-letter); font-size: 56px;
  color: var(--red); line-height: 1; margin-bottom: 16px;
}
.modal-success h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 24px; text-transform: uppercase;
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.modal-success p {
  font-size: 14px; line-height: 1.5; opacity: 0.8;
  margin: 0 auto 8px; max-width: 320px;
}

/* Level picker */
.level-pick { margin-bottom: 16px; }
.step-sublabel {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 10px;
}
.level-radio {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; margin-bottom: 8px;
  border: 1.5px solid var(--line); border-radius: 10px;
  cursor: pointer; transition: all 0.2s ease;
}
.level-radio:hover { border-color: var(--burgundy); }
.level-radio.sel { border-color: var(--red); background: color-mix(in oklab, var(--red) 8%, transparent); }
.level-radio .mark {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line); flex-shrink: 0;
  position: relative; transition: all 0.2s ease; margin-top: 2px;
}
.level-radio.sel .mark { border-color: var(--red); }
.level-radio.sel .mark::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--red); border-radius: 50%;
}
.lr-info { display: flex; flex-direction: column; gap: 2px; }
.lr-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.lr-desc {
  font-size: 12px; line-height: 1.4; opacity: 0.65;
}

/* Consent blocks */
.consent-block {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px; margin-bottom: 14px;
}
.consent-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.consent-note {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.05em;
  opacity: 0.55; line-height: 1.5; margin-top: 10px;
}

/* Refund table */
.refund-table { display: flex; flex-direction: column; gap: 0; }
.refund-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.refund-row:last-child { border-bottom: 0; }
.refund-when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; }
.refund-pct {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px;
}
.refund-pct.good { color: #2a9d2a; }
.refund-pct.mid { color: var(--blue); }
.refund-pct.low { color: #d4880f; }
.refund-pct.no { color: var(--red); font-size: 11px; font-weight: 500; }
[data-theme="dark"] .refund-pct.good { color: #5edb5e; }
[data-theme="dark"] .refund-pct.mid { color: var(--blue); }

/* Checkbox rows */
.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; padding: 10px 0; margin-bottom: 4px;
}
.checkbox-row input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.cb-mark {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid var(--line); border-radius: 4px;
  position: relative; transition: all 0.2s ease; margin-top: 1px;
}
.checkbox-row input:checked + .cb-mark {
  background: var(--red); border-color: var(--red);
}
.checkbox-row input:checked + .cb-mark::after {
  content: ''; position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid var(--ivory); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cb-text {
  font-size: 13px; line-height: 1.45; flex: 1;
}
.cb-text a { border-bottom: 1px solid currentColor; }
.cb-err {
  color: var(--red); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  margin: 0 0 10px 34px; display: none;
}

/* Promo block */
.promo-block { margin-top: 16px; margin-bottom: 12px; }
.promo-input-row { display: flex; gap: 8px; }
.promo-input-row input { flex: 1; }
.promo-apply-btn {
  background: var(--burgundy); color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 16px; border-radius: 8px; white-space: nowrap;
  transition: all 0.2s ease;
}
.promo-apply-btn:hover { background: var(--red); }
[data-theme="dark"] .promo-apply-btn { background: var(--ivory); color: var(--burgundy); }
.promo-result {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  margin-top: 8px; min-height: 18px;
}

/* Pay note */
.pay-note {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px;
  font-size: 13px; line-height: 1.5; opacity: 0.85;
  margin-bottom: 16px;
}
.pay-note strong { font-weight: 700; }
