@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --chroya-bg: #0f0d11;
  --chroya-surface: #1a161d;
  --chroya-surface-alt: #2a222e;
  --chroya-gold: #c4a25a;
  --chroya-gold-hover: #d5b572;
  --chroya-text: #e6e1e6;
  --chroya-text-muted: #a69da8;
  --chroya-border: rgba(196, 162, 90, 0.2);
  --chroya-font-heading: 'Playfair Display', serif;
  --chroya-font-body: 'Lato', sans-serif;
  --chroya-transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--chroya-bg);
  color: var(--chroya-text);
  font-family: var(--chroya-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.chroya-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.chroya-header {
  border-bottom: 1px solid var(--chroya-border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: rgba(15, 13, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.chroya-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chroya-logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chroya-logo-text {
  font-family: var(--chroya-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--chroya-gold);
  border: 1px solid var(--chroya-gold);
  padding: 5px 10px;
  letter-spacing: 2px;
}

.chroya-brand {
  display: flex;
  flex-direction: column;
}

.chroya-brand-name {
  font-family: var(--chroya-font-heading);
  font-size: 20px;
  color: var(--chroya-text);
  letter-spacing: 1px;
}

.chroya-brand-sub {
  font-size: 12px;
  color: var(--chroya-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chroya-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chroya-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--chroya-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--chroya-gold);
  font-family: var(--chroya-font-heading);
}

.chroya-badge-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--chroya-text-muted);
}

/* Hero */
.chroya-hero {
  padding: 100px 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--chroya-border);
}

.chroya-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.chroya-hero-overline {
  color: var(--chroya-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
}

.chroya-hero-title {
  font-family: var(--chroya-font-heading);
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 400;
}

.chroya-hero-desc {
  font-size: 18px;
  color: var(--chroya-text-muted);
  font-weight: 300;
}

.chroya-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.chroya-hero-card {
  background: var(--chroya-surface);
  padding: 30px;
  border: 1px solid var(--chroya-border);
  text-align: center;
  transition: var(--chroya-transition);
}

.chroya-hero-card:hover {
  border-color: var(--chroya-gold);
  transform: translateY(-5px);
}

.chroya-hero-card-title {
  font-family: var(--chroya-font-heading);
  color: var(--chroya-gold);
  font-size: 20px;
  margin-bottom: 10px;
}

.chroya-hero-card-text {
  font-size: 14px;
  color: var(--chroya-text-muted);
}

/* Sections Common */
.chroya-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--chroya-border);
}

.chroya-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.chroya-section-title {
  font-family: var(--chroya-font-heading);
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 400;
}

.chroya-section-intro {
  color: var(--chroya-text-muted);
  font-size: 16px;
}

.chroya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Feature Cards */
.chroya-feature-card {
  background: var(--chroya-surface);
  padding: 40px 30px;
  border: 1px solid var(--chroya-border);
  transition: var(--chroya-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chroya-feature-card:hover {
  background: var(--chroya-surface-alt);
}

.chroya-kicker {
  font-size: 12px;
  color: var(--chroya-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.chroya-h3 {
  font-family: var(--chroya-font-heading);
  font-size: 24px;
  margin-bottom: 15px;
}

.chroya-feature-text {
  color: var(--chroya-text-muted);
  margin-bottom: 25px;
  font-size: 15px;
}

.chroya-list {
  margin-top: auto;
  border-top: 1px solid var(--chroya-border);
  padding-top: 20px;
}

.chroya-list-item {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--chroya-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.chroya-list-item::before {
  content: "•";
  color: var(--chroya-gold);
  font-size: 18px;
  line-height: 1;
}

/* Footer */
.chroya-footer {
  padding: 80px 0 40px;
  background: var(--chroya-surface);
}

.chroya-footer-slogan {
  text-align: center;
  font-family: var(--chroya-font-heading);
  font-size: 32px;
  color: var(--chroya-gold);
  margin-bottom: 60px;
}

.chroya-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.chroya-footer-col h4 {
  font-family: var(--chroya-font-heading);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--chroya-text);
}

.chroya-footer-col p {
  color: var(--chroya-text-muted);
  font-size: 14px;
  margin-bottom: 15px;
}

.chroya-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chroya-contact-item {
  color: var(--chroya-text-muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.chroya-contact-label {
  color: var(--chroya-gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.chroya-footer-bottom {
  border-top: 1px solid var(--chroya-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chroya-copy {
  color: var(--chroya-text-muted);
  font-size: 13px;
}

.chroya-nav {
  display: flex;
  gap: 30px;
}

.chroya-nav-link {
  color: var(--chroya-text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--chroya-transition);
}

.chroya-nav-link:hover {
  color: var(--chroya-gold);
}

@media (max-width: 900px) {
  .chroya-hero-grid,
  .chroya-grid,
  .chroya-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .chroya-hero-title {
    font-size: 48px;
  }
  
  .chroya-header-inner {
    flex-direction: column;
    gap: 20px;
  }
  
  .chroya-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
