:root {
  --bg: #f3ede2;
  --panel: rgba(33, 24, 20, 0.88);
  --card: rgba(255, 248, 240, 0.08);
  --card-border: rgba(255, 245, 231, 0.16);
  --text: #f7efe6;
  --muted: #dcc9b7;
  --accent: #b07a4b;
  --accent-soft: #d7b191;
  --shadow: 0 20px 60px rgba(13, 10, 8, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(176, 122, 75, 0.28), transparent 30%),
    linear-gradient(135deg, #221612 0%, #120f10 48%, #5b412f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

.hero-panel,
.info-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel {
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.2) 0%, rgba(8, 8, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.1) 0%, rgba(8, 8, 10, 0.66) 100%),
    url("banner.jpg") center center / cover no-repeat;
  transform: scale(1.04);
  animation: revealImage 1.4s ease-out forwards;
}

.hero-copy {
  position: relative;
  max-width: 42rem;
  animation: riseIn 0.9s ease-out 0.15s both;
}

.eyebrow,
.section-label,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent-soft);
}

.hero-copy h1,
.info-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero-copy h1 {
  margin-top: 0.75rem;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  text-wrap: balance;
}

.lead,
.description,
.contact-card p,
.contact-card a {
  font-size: 1rem;
  line-height: 1.75;
}

.lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #f5e8da;
}

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(176, 122, 75, 0.7);
  animation: pulse 1.8s infinite;
}

.info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

.info-panel::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -18%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 122, 75, 0.28), transparent 65%);
  pointer-events: none;
}

.brand-lockup,
.info-copy,
.contact-grid,
.social-row,
.legal-row {
  position: relative;
  animation: riseIn 0.9s ease-out both;
}

.brand-lockup {
  animation-delay: 0.1s;
}

.info-copy {
  animation-delay: 0.22s;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  animation-delay: 0.34s;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation-delay: 0.46s;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation-delay: 0.58s;
}

.brand-logo {
  width: min(100%, 20rem);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

.info-copy h2 {
  margin-top: 0.6rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.description {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-card {
  padding: 1.2rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.contact-card p,
.contact-card a {
  margin: 0.5rem 0 0;
  color: var(--text);
  text-decoration: none;
}

.contact-card a:hover,
.social-row a:hover {
  color: var(--accent-soft);
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(176, 122, 75, 0.14);
}

.legal-row a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.legal-row a:hover {
  color: var(--text);
  border-color: var(--accent-soft);
}

.policy-page {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.policy-card {
  margin: clamp(1rem, 4vw, 2.5rem) 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 245, 231, 0.14);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(25, 18, 15, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.policy-topbar,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.policy-logo {
  width: min(100%, 13rem);
  height: auto;
}

.policy-link {
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, background 0.22s ease;
}

.policy-link:hover {
  transform: translateY(-2px);
  background: rgba(176, 122, 75, 0.14);
}

.policy-header {
  margin: 2rem 0 1.5rem;
}

.policy-header h1 {
  margin: 0.6rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
}

.policy-header p,
.policy-body p,
.policy-body li {
  color: var(--muted);
  line-height: 1.8;
}

.policy-body section + section {
  margin-top: 1.8rem;
}

.policy-body h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--text);
}

.policy-body ol,
.policy-body ul {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

.policy-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-footer p {
  margin: 0.45rem 0;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 122, 75, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(176, 122, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(176, 122, 75, 0);
  }
}

@media (max-width: 980px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 64vh;
  }

  .info-panel {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .info-panel {
    padding: 1.4rem;
  }

  .hero-panel {
    min-height: 70vh;
    align-items: flex-end;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .info-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .social-row a {
    width: 100%;
  }

  .policy-topbar,
  .policy-actions {
    align-items: flex-start;
  }
}
