:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #2d4a3e;
  -webkit-font-smoothing: antialiased;
  background-color: #fdfaf5;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.4s;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.z-50 {
  z-index: 50;
}

.z-\[60\] {
  z-index: 60;
}

.mx-auto {
  margin-inline: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-20 {
  height: 5rem;
}

.h-px {
  height: 1px;
}

.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.overflow-hidden {
  overflow: hidden;
}

.p-2 {
  padding: 0.5rem;
}

.px-6 {
  padding-inline: 1.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

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

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.transition-all {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-12 {
    padding-inline: 3rem;
  }
}

.btn-gold {
  color: #fff;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9a85c, #a0802a);
  border-radius: 2px;
  padding: 0.875rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  transition: opacity 0.3s;
  position: absolute;
  inset: 0;
}

.btn-gold::before {
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-gold:hover::before {
  transition: left 0.6s;
  left: 120%;
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 92, 0.4);
}

.nav-link.active {
  color: #c9a85c !important;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  background: #c9a85c;
  width: 0;
  height: 1px;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.topbar-track[data-astro-cid-lq7i5isa] {
  display: flex;
  width: max-content;
  animation: topbarScroll 32s linear infinite;
  height: 36px;
  align-items: center;
}

.topbar-content[data-astro-cid-lq7i5isa] {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.topbar-item[data-astro-cid-lq7i5isa] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 245, 0.85);
  white-space: nowrap;
}

.topbar-item[data-astro-cid-lq7i5isa] strong[data-astro-cid-lq7i5isa] {
  color: #e8d4a0;
  font-weight: 600;
}

.topbar-star[data-astro-cid-lq7i5isa] {
  color: #c9a85c;
  font-size: 0.55rem;
}

@keyframes topbarScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.topbar-track[data-astro-cid-lq7i5isa]:hover {
  animation-play-state: paused;
}

.social-link[data-astro-cid-sz7xmlte]:hover {
  border-color: rgba(201, 168, 92, 0.5) !important;
  color: #c9a85c !important;
}

.footer-link[data-astro-cid-sz7xmlte]:hover {
  color: #c9a85c !important;
}

.legal-main {
  min-height: 100vh;
}

.legal-hero {
  padding: 8.75rem 1.5rem 1.25rem;
}

.legal-hero-inner,
.legal-content {
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #2d4a3e;
}

.legal-content {
  padding: 0 1.5rem 5rem;
}

.notice {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 74, 62, 0.1);
  color: #4a6358;
  font-size: 0.92rem;
  line-height: 1.7;
}

.card {
  padding: 1.4rem 0;
  margin: 0;
  border-bottom: 1px solid rgba(45, 74, 62, 0.1);
}

.card h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.08;
  color: #2d4a3e;
}

.card p,
.card ul {
  margin: 0.75rem 0 0;
  line-height: 1.85;
  color: #3f5d52;
}

.card ul {
  padding-left: 1.2rem;
}

.card li + li {
  margin-top: 0.35rem;
}

.muted {
  color: #4a6358;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fdfaf5;
}

::-webkit-scrollbar-thumb {
  background: rgba(45, 74, 62, 0.25);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 92, 0.5);
}

::selection {
  color: #2d4a3e;
  background: rgba(201, 168, 92, 0.25);
}

@media (max-width: 767px) {
  .legal-hero {
    padding-top: 8.25rem;
    padding-bottom: 1rem;
  }

  .legal-content {
    padding-bottom: 4rem;
  }

  .card {
    padding: 1.1rem 0;
  }
}
