:root {
  color-scheme: light;
}

html {
  background: #f7f2ea;
}

body {
  min-height: 100vh;
}

a,
button,
summary,
input,
textarea,
select {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.glass-shell {
  border: 1px solid rgba(16, 33, 38, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(16, 33, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 42%),
    linear-gradient(135deg, #17342f 0%, #102126 100%);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(23, 52, 47, 0.68);
}

.cta-primary {
  background:
    linear-gradient(135deg, rgba(201, 140, 93, 1) 0%, rgba(142, 85, 43, 1) 100%);
  box-shadow:
    0 18px 30px rgba(201, 140, 93, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 38px rgba(201, 140, 93, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

.floating-orb-left {
  top: 4rem;
  left: -4rem;
  height: 18rem;
  width: 18rem;
  background: radial-gradient(circle, rgba(201, 140, 93, 0.22) 0%, rgba(201, 140, 93, 0) 68%);
  animation: orb-float 12s ease-in-out infinite;
}

.floating-orb-right {
  right: -5rem;
  top: 18rem;
  height: 22rem;
  width: 22rem;
  background: radial-gradient(circle, rgba(23, 52, 47, 0.18) 0%, rgba(23, 52, 47, 0) 68%);
  animation: orb-float 14s ease-in-out infinite;
}

.mesh-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 33, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 38, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  opacity: 0.2;
}

.stack-shell {
  display: grid;
  gap: 1rem;
}

.section-panel,
.mini-panel,
.timeline-card,
.case-card,
.faq-card,
.final-cta-card,
.stat-card {
  border: 1px solid rgba(16, 33, 38, 0.08);
}

.section-panel,
.stat-card,
.case-card,
.timeline-card {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(16, 33, 38, 0.08);
  backdrop-filter: blur(12px);
}

.mini-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: 0 18px 44px rgba(16, 33, 38, 0.08);
}

.stat-card {
  border-radius: 1.5rem;
  padding: 1.4rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(16, 33, 38, 0.74);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(16, 33, 38, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #102126;
  box-shadow: 0 8px 24px rgba(16, 33, 38, 0.04);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201, 140, 93, 0.56);
  box-shadow:
    0 0 0 4px rgba(201, 140, 93, 0.12),
    0 8px 24px rgba(16, 33, 38, 0.06);
  outline: none;
}

.trust-chip {
  display: grid;
  gap: 0.7rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(16, 33, 38, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 1.3rem;
}

.trust-chip-label,
.case-meta-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(23, 52, 47, 0.56);
}

.trust-chip-copy,
.case-meta-value {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(16, 33, 38, 0.76);
}

.timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 1.8rem;
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 0;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 140, 93, 1), rgba(201, 140, 93, 0));
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(23, 52, 47, 0.08);
  padding: 0.5rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #17342f;
}

.case-card {
  overflow: hidden;
  border-radius: 2rem;
}

.case-surface {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  padding: 1.7rem;
}

.case-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(16, 33, 38, 0.24)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%);
}

.case-surface-japan {
  background:
    radial-gradient(circle at top left, rgba(255, 199, 146, 0.34), transparent 34%),
    linear-gradient(135deg, #16373d 0%, #0f2025 48%, #253f48 100%);
}

.case-surface-italy {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 34%),
    linear-gradient(135deg, #876f56 0%, #665341 48%, #433529 100%);
}

.case-surface-france {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 191, 0.2), transparent 34%),
    linear-gradient(135deg, #34455b 0%, #29384b 44%, #1d2733 100%);
}

.case-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.case-surface h3,
.case-surface p {
  position: relative;
  z-index: 1;
}

.fit-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.fit-line::before {
  content: "";
  margin-top: 0.65rem;
  height: 0.45rem;
  width: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c98c5d, #17342f);
}

.faq-card {
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 44px rgba(16, 33, 38, 0.08);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding-right: 2rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: #102126;
  position: relative;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(23, 52, 47, 0.7);
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(16, 33, 38, 0.72);
}

.final-cta-shell {
  background:
    radial-gradient(circle at top right, rgba(201, 140, 93, 0.25), transparent 24%),
    linear-gradient(135deg, #17342f 0%, #102126 48%, #11292e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(16, 33, 38, 0.14);
}

.final-cta-card {
  display: grid;
  gap: 0.55rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  color: #fff;
  backdrop-filter: blur(16px);
}

.final-cta-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.final-cta-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.final-cta-copy {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: none;
  gap: 0.8rem;
  border-top: 1px solid rgba(16, 33, 38, 0.08);
  background: rgba(247, 242, 234, 0.92);
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  backdrop-filter: blur(16px);
}

.sticky-cta-button {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(16, 33, 38, 0.08);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@keyframes orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .floating-orb-left,
  .floating-orb-right,
  .reveal-on-scroll,
  .cta-primary,
  .final-cta-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media print {
  @page {
    margin: 0.55in;
    size: A4 portrait;
  }

  html,
  body {
    background: #fff !important;
  }

  body {
    color: #111 !important;
  }

  .print-hidden,
  .sticky-cta,
  .floating-orb,
  .mesh-overlay {
    display: none !important;
  }

  main {
    display: block;
  }

  .glass-shell,
  .section-panel,
  .mini-panel,
  .timeline-card,
  .case-card,
  .faq-card,
  .final-cta-shell,
  .stat-card,
  .trust-chip {
    break-inside: avoid;
    background: #fff !important;
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: none !important;
  }

  .case-surface,
  .final-cta-shell {
    color: #111 !important;
  }

  .case-surface h3,
  .case-surface p,
  .case-tag,
  .final-cta-shell * {
    color: #111 !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .eyebrow,
  .trust-chip-label,
  .case-meta-label,
  .final-cta-label {
    color: rgba(0, 0, 0, 0.55) !important;
  }
}
