:root {
  color-scheme: dark;
  --background: #06261D;
  --section: #0E3F2A;
  --text: #F5F0E6;
  --button: #D4AF37;
  --button-text: #111111;
  --accent: #7ED957;
  --ink: var(--text);
  --muted: rgba(245, 240, 230, 0.66);
  --line: rgba(212, 175, 55, 0.42);
  --green: var(--accent);
  --green-soft: rgba(126, 217, 87, 0.16);
  --panel: rgba(14, 63, 42, 0.78);
  --moss: var(--section);
  --olive: #587060;
  --copper: var(--button);
  --cream: var(--text);
  --paper: var(--text);
  --atelier-shadow: 0 28px 80px rgba(8, 16, 13, 0.34);
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 4%, rgba(126, 217, 87, 0.14), transparent 32rem),
    radial-gradient(circle at 80% 12%, rgba(212, 175, 55, 0.12), transparent 28rem),
    linear-gradient(180deg, #03130f 0%, var(--background) 48%, #03130f 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.glass {
  background: linear-gradient(180deg, rgba(14, 63, 42, 0.82), rgba(6, 38, 29, 0.78));
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(18px);
}

.hairline {
  border: 1px solid var(--line);
}

.premium-ring {
  box-shadow: 0 0 0 1px rgba(126, 217, 87, 0.26), 0 24px 70px rgba(126, 217, 87, 0.1);
}

.btn-primary,
.btn-secondary,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--button), #f2d978);
  color: var(--button-text);
  font-weight: 800;
  padding: 0 1.05rem;
}

.btn-secondary {
  border: 1px solid rgba(245, 240, 230, 0.18);
  color: var(--ink);
  padding: 0 1.05rem;
}

.icon-btn {
  width: 44px;
  border: 1px solid rgba(245, 240, 230, 0.16);
}

.btn-primary:hover,
.btn-secondary:hover,
.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.58);
}

.section {
  padding: 5rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(3, 19, 15, 0.88);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.site-brand img {
  width: clamp(132px, 17vw, 210px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  color: rgba(245, 240, 230, 0.82);
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--button);
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  padding: 2.5rem 0;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  color: rgba(245, 240, 230, 0.58);
  font-size: 0.9rem;
}

.site-footer strong {
  color: rgba(245, 240, 230, 0.86) !important;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(245, 240, 230, 0.82);
  font-weight: 800;
}

.footer-copy {
  margin-top: 0.2rem;
  text-align: right;
}

.footer-contact {
  margin-top: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(245, 240, 230, 0.86);
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--button);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: rgba(245, 240, 230, 0.72);
  font-weight: 800;
}

.contact-form .field {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form textarea.field {
  resize: vertical;
}

.contact-form .field:focus {
  border-color: rgba(212, 175, 55, 0.78);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

body .container {
  width: min(1120px, calc(100% - 2rem));
  max-width: none !important;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-visual {
  min-height: clamp(720px, 100vh, 980px);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 45%, rgba(0, 0, 0, 0.72) 100%),
    url("./images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, transparent 24%, transparent 66%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.38) 100%);
}

.hero-visual::after {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(196, 134, 87, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 134, 87, 0.15) 1px, transparent 1px);
  background-size: 84px 84px;
  mix-blend-mode: soft-light;
}

.hero-chrome {
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.8),
    0 16px 38px rgba(0, 0, 0, 0.78);
  background: linear-gradient(180deg, #fff8e7 0%, #c8b9a0 38%, #f8ecd7 58%, #8d806f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(18, 13, 8, 0.42);
}

.hero-bottom-panel {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
}

.trust-smoke {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.trust-smoke::before,
.trust-smoke::after {
  content: "";
  position: absolute;
  inset: -45% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 54%, rgba(243, 238, 229, 0.12), transparent 30%),
    radial-gradient(ellipse at 48% 38%, rgba(196, 134, 87, 0.09), transparent 34%),
    radial-gradient(ellipse at 78% 58%, rgba(243, 238, 229, 0.1), transparent 30%);
  filter: blur(28px);
  opacity: 0.55;
  transform: translate3d(-6%, 0, 0) scale(1.1);
  animation: smoke-drift 18s ease-in-out infinite alternate;
}

.trust-smoke::after {
  inset: -70% -20%;
  opacity: 0.34;
  filter: blur(42px);
  transform: translate3d(8%, 8%, 0) scale(1.22);
  animation-duration: 26s;
  animation-direction: alternate-reverse;
}

@keyframes smoke-drift {
  0% {
    transform: translate3d(-7%, 2%, 0) scale(1.08) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, -4%, 0) scale(1.18) rotate(2deg);
  }
  100% {
    transform: translate3d(8%, 3%, 0) scale(1.12) rotate(-1deg);
  }
}

.atelier-hero {
  min-height: 94vh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 217, 87, 0.28) 0 20%, transparent 34%),
    linear-gradient(135deg, #041a14, var(--section) 58%, #03130f);
}

.atelier-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.66)),
    radial-gradient(circle at 50% 38%, transparent 0 28%, rgba(0, 0, 0, 0.3) 100%);
}

.atelier-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  z-index: -1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.atelier-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: none;
}

.atelier-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 7vw, 86px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.atelier-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 156px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(16px);
}

.atelier-logo img {
  width: 136px;
  height: 58px;
  object-fit: contain;
}

.atelier-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 38px);
  flex-wrap: wrap;
}

.atelier-nav-cta {
  padding: 13px 22px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.44);
  box-shadow: inset 0 1px rgba(245, 240, 230, 0.18);
}

.atelier-copy {
  align-self: end;
  max-width: 780px;
  padding: 0 clamp(18px, 7vw, 86px) 46px;
}

.atelier-eyebrow {
  color: var(--copper);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
}

.atelier-title {
  margin: 16px 0 22px;
  max-width: 760px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
}

.atelier-copy p {
  max-width: 620px;
  color: rgba(243, 238, 229, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.quick-request {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr auto;
  gap: 2px;
  position: relative;
  z-index: 3;
  width: min(960px, calc(100vw - 36px));
  min-height: 92px;
  margin: 0 auto 34px;
  padding: 12px;
  border-radius: 26px;
  background: var(--paper);
  color: var(--button-text);
  box-shadow: var(--atelier-shadow);
}

.quick-request .field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--button-text);
}

.quick-request .field span {
  display: block;
  margin-bottom: 6px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
}

.quick-request .field strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-request button,
.quick-request a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: var(--button);
  color: var(--button-text);
  min-height: 68px;
  padding: 0 32px;
  font: inherit;
  font-weight: 850;
}

.atelier-main {
  padding: 86px clamp(18px, 7vw, 86px) 72px;
}

.atelier-tabs {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  flex-wrap: wrap;
  margin: 10px 0 48px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 900;
  font-size: clamp(14px, 2vw, 20px);
}

.atelier-tabs .active {
  color: var(--paper);
  font-size: clamp(34px, 5vw, 54px);
}

.atelier-showcase {
  display: grid;
  grid-template-columns: minmax(160px, 0.82fr) minmax(260px, 1.25fr) minmax(160px, 0.82fr);
  gap: clamp(16px, 4vw, 54px);
  align-items: center;
  perspective: 1200px;
}

.atelier-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.56);
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.66)),
    url("./images/atelier-reception-ai.png");
  background-size: cover;
  background-position: center;
  box-shadow: 22px 30px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(212, 175, 55, 0.12), inset 0 1px rgba(212, 175, 55, 0.22);
  transform-style: preserve-3d;
}

.atelier-card.featured {
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.66)),
    url("./images/atelier-lounge-ai.png");
  background-size: cover;
  background-position: center;
}

.atelier-card:last-child {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.66)),
    url("./images/atelier-salon-ai.png");
  background-size: cover;
  background-position: center;
}

.atelier-card h2,
.atelier-card h3 {
  margin: 0;
  text-transform: uppercase;
}

.atelier-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.atelier-card-row {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.atelier-dots {
  margin: 42px 0 64px;
  text-align: center;
}

.atelier-dots i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--paper);
  opacity: 0.9;
}

.atelier-dots i:nth-child(2) {
  background: var(--copper);
}

@keyframes breathe {
  from {
    transform: scale(1.035) translateY(0);
  }
  to {
    transform: scale(1.085) translateY(-16px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-stage {
  perspective: 1200px;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tilt-card:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(212, 175, 55, 0.32);
}

.depth-float {
  animation: depth-float 8s ease-in-out infinite;
}

@keyframes depth-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 28px) rotateX(2deg);
  }
}

.scroll-depth {
  transform: translateY(calc(var(--scroll, 0) * -0.035px)) rotateX(calc(var(--scroll, 0) * 0.004deg));
}

.field {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 230, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  outline: none;
}

.field:focus {
  border-color: rgba(212, 175, 55, 0.66);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.field option {
  background: var(--background);
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
}

.status-pill {
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-new {
  background: rgba(126, 217, 87, 0.16);
  color: var(--accent);
}

.status-review {
  background: rgba(212, 175, 55, 0.16);
  color: #f2d978;
}

.blog-card {
  overflow: hidden;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  border-right: 1px solid var(--line);
}

.blog-card details {
  border-top: 1px solid rgba(212, 175, 55, 0.24);
  padding-top: 1rem;
}

.blog-card summary {
  color: var(--button);
}

.blog-card details p {
  margin-top: 1rem;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.75;
}

.blog-card details ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.75;
  list-style: disc;
}

.request-page {
  min-height: calc(100vh - 76px);
  padding: 2.5rem 1rem 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 32rem),
    linear-gradient(180deg, #080704 0%, #1f1a03 38%, #050505 100%);
}

.request-hero {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.request-kicker {
  color: var(--button);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.request-hero h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.request-hero p {
  margin-top: 1rem;
  color: rgba(245, 240, 230, 0.66);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.request-shell {
  max-width: 760px;
  margin: 0 auto;
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(5, 48px);
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.request-progress i {
  display: none;
}

.request-progress span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.07);
  color: rgba(245, 240, 230, 0.55);
  font-weight: 900;
}

.request-progress span.active,
.request-progress span.done {
  background: #ffc400;
  color: #111;
}

.invitation-form,
.invitation-success {
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.step-heading h2 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.date-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.date-options button,
.visitor-counter button,
.review-list button {
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 900;
}

.date-options button.selected,
.visitor-counter button:hover,
.review-list button {
  background: rgba(212, 175, 55, 0.18);
  color: var(--button);
}

.other-date {
  display: block;
  margin-top: 1rem;
}

.form-label,
.request-grid label span,
.step-panel label > span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(245, 240, 230, 0.82);
  font-weight: 800;
}

.request-help {
  margin-top: 0.75rem;
  color: rgba(245, 240, 230, 0.58);
}

.visitor-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0.75rem 0 0.35rem;
}

.visitor-counter strong {
  min-width: 72px;
  text-align: center;
  color: #ffc400 !important;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
}

.visitor-counter button {
  width: 64px;
  color: #ffc400;
  font-size: 2rem;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.notes-toggle,
.ghost-link {
  color: #ffc400;
  font-weight: 800;
}

.notes-toggle {
  margin: 1.2rem 0;
}

.privacy-note,
.legal-note {
  margin-top: 1.5rem;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.09);
  color: rgba(245, 240, 230, 0.74);
  padding: 1rem 1.1rem;
  line-height: 1.7;
}

.legal-check {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.legal-check input {
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  accent-color: #ffc400;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}

.step-actions.end {
  justify-content: flex-end;
}

.step-actions .btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.review-list {
  display: grid;
  gap: 1rem;
}

.review-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
}

.review-list span {
  color: rgba(245, 240, 230, 0.58);
  font-weight: 800;
}

.review-list strong {
  grid-column: 1;
  color: var(--text) !important;
  font-size: 1.05rem;
}

.review-list button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 38px;
  padding: 0 1rem;
}

.request-step-label {
  margin-top: 1rem;
  text-align: center;
  color: rgba(245, 240, 230, 0.52);
}

.invitation-success {
  text-align: center;
}

.invitation-success h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.invitation-code-card {
  margin: 1.5rem auto;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4af37, #ffd500);
  color: #111;
  padding: 1.4rem;
  max-width: 520px;
}

.invitation-code-card span {
  display: block;
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invitation-code-card strong {
  display: block;
  margin-top: 0.6rem;
  color: #111 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: 0.06em;
}

.success-grid,
.do-dont {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  text-align: left;
}

.success-grid article,
.do-dont div {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem;
}

.success-grid p,
.success-grid li,
.do-dont li {
  color: rgba(245, 240, 230, 0.76);
  line-height: 1.7;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.text-zinc-200,
.text-zinc-300 {
  color: rgba(245, 240, 230, 0.86) !important;
}

.text-zinc-400,
.text-zinc-500 {
  color: rgba(245, 240, 230, 0.58) !important;
}

.text-emerald-200,
.text-emerald-300 {
  color: var(--accent) !important;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.font-bold,
.font-extrabold,
.font-black {
  color: var(--button) !important;
}

.btn-primary,
.btn-primary *,
.quick-request a,
.quick-request button {
  color: var(--button-text) !important;
}

.bg-emerald-300 {
  background-color: var(--accent) !important;
}

.bg-emerald-300\/10 {
  background-color: rgba(126, 217, 87, 0.1) !important;
}

.border-emerald-300\/20 {
  border-color: rgba(126, 217, 87, 0.2) !important;
}

.border-white\/10,
.border-white\/15 {
  border-color: rgba(212, 175, 55, 0.28) !important;
}

.bg-white\/\[0\.025\],
.bg-white\/\[0\.035\],
.bg-white\/\[0\.045\] {
  background-color: rgba(6, 38, 29, 0.34) !important;
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 1rem;
  }

  .hero-visual {
    min-height: 760px;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.88) 100%),
      url("./images/hero-bg.jpg");
    background-position: center;
  }
}

@media (max-width: 800px) {
  .site-header-inner {
    min-height: 68px;
  }

  .site-brand img {
    width: 126px;
    height: 48px;
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.86rem;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right {
    justify-items: end;
    text-align: right;
  }

  .atelier-links {
    display: none;
  }

  .atelier-nav {
    align-items: flex-start;
  }

  .quick-request {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .quick-request a {
    padding: 18px;
  }

  .atelier-showcase {
    grid-template-columns: 1fr;
  }

  .atelier-card,
  .atelier-card.featured {
    min-height: 320px;
  }

  .blog-article {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .request-page {
    padding: 1.6rem 1rem 3rem;
  }

  .request-progress {
    grid-template-columns: repeat(5, 42px);
    gap: 0.55rem;
  }

  .request-progress span {
    width: 42px;
    height: 42px;
  }

  .date-options,
  .request-grid,
  .success-grid,
  .do-dont {
    grid-template-columns: 1fr;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .step-actions.end {
    align-items: stretch;
  }
}
