@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --aach-gold: #C8A97E;
  --aach-gold-dark: #A6875B;
  --aach-navy: #0F1722;
  --aach-navy-light: #1A2433;
  --aach-red: #7C1D24;
  --aach-cream: #F7F5F0;
  --aach-white: #FFFFFF;
  --aach-text-dark: #2C3036;
  --aach-text-light: #E0E4E8;
  
  --aach-font-heading: 'Cormorant Garamond', serif;
  --aach-font-body: 'Montserrat', sans-serif;
  
  --aach-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

.aach-body-wrap {
  font-family: var(--aach-font-body);
  background-color: var(--aach-cream);
  color: var(--aach-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.aach-top-masthead {
  background-color: var(--aach-navy);
  color: var(--aach-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--aach-gold);
}

.aach-masthead-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aach-logo-mark {
  font-family: var(--aach-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--aach-gold);
  letter-spacing: 2px;
  text-decoration: none;
}

.aach-brand-cluster {
  text-align: center;
}

.aach-brand-title {
  font-family: var(--aach-font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.aach-brand-tagline {
  font-size: 0.85rem;
  color: var(--aach-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.aach-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--aach-red);
  color: var(--aach-red);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--aach-font-heading);
}

/* Hero Section */
.aach-showcase-sec {
  position: relative;
  background-color: var(--aach-navy);
  background-image: radial-gradient(circle at center, #1A2433 0%, #0F1722 100%);
  padding: 8rem 2rem 6rem;
  text-align: center;
  color: var(--aach-white);
  overflow: hidden;
}

.aach-showcase-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(200, 169, 126, 0.03) 10px,
    rgba(200, 169, 126, 0.03) 20px
  );
  pointer-events: none;
}

.aach-showcase-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}

.aach-showcase-kicker {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--aach-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--aach-gold);
  padding-bottom: 0.5rem;
}

.aach-showcase-h1 {
  font-family: var(--aach-font-heading);
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.aach-showcase-lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--aach-text-light);
  font-weight: 300;
}

.aach-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.aach-hl-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.2);
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: var(--aach-transition);
}

.aach-hl-box:hover {
  transform: translateY(-10px);
  border-color: var(--aach-gold);
  background: rgba(255, 255, 255, 0.08);
}

.aach-hl-title {
  font-family: var(--aach-font-heading);
  font-size: 1.6rem;
  color: var(--aach-gold);
  margin-bottom: 1rem;
}

.aach-hl-txt {
  font-size: 0.95rem;
  color: var(--aach-text-light);
  line-height: 1.5;
}

/* Sections Common */
.aach-wellbeing-sec, .aach-entertainment-sec {
  padding: 7rem 2rem;
}

.aach-entertainment-sec {
  background-color: var(--aach-white);
}

.aach-section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.aach-sec-heading-box {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.aach-sec-h2 {
  font-family: var(--aach-font-heading);
  font-size: 3.5rem;
  color: var(--aach-navy);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.aach-sec-h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--aach-gold);
  margin: 1rem auto 0;
}

.aach-sec-intro {
  font-size: 1.15rem;
  color: #555;
}

/* Cards */
.aach-card-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.aach-feature-card {
  background: var(--aach-white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border-bottom: 4px solid transparent;
  transition: var(--aach-transition);
}

.aach-wellbeing-sec .aach-feature-card {
  background: var(--aach-white);
}

.aach-entertainment-sec .aach-feature-card {
  background: var(--aach-cream);
}

.aach-feature-card:hover {
  transform: translateY(-15px);
  border-bottom-color: var(--aach-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.aach-card-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aach-red);
  margin-bottom: 1rem;
}

.aach-card-h3 {
  font-family: var(--aach-font-heading);
  font-size: 2.2rem;
  color: var(--aach-navy);
  margin-bottom: 1.5rem;
}

.aach-card-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  min-height: 70px;
}

.aach-card-list {
  list-style: none;
}

.aach-card-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--aach-navy-light);
}

.aach-card-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aach-gold);
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Footer */
.aach-bottom-footer {
  background-color: var(--aach-navy);
  color: var(--aach-white);
  padding: 6rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.aach-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.aach-footer-slogan {
  text-align: center;
  margin-bottom: 4rem;
}

.aach-slogan-text {
  font-family: var(--aach-font-heading);
  font-size: 3rem;
  color: var(--aach-gold);
  font-style: italic;
}

.aach-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.aach-foot-head {
  font-family: var(--aach-font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--aach-white);
}

.aach-foot-desc {
  color: var(--aach-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
}

.aach-link-gold {
  color: var(--aach-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.aach-link-gold:hover {
  color: var(--aach-white);
}

.aach-footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.aach-contacts-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.aach-contact-item {
  font-size: 0.95rem;
  color: var(--aach-text-light);
}

.aach-contact-item strong {
  color: var(--aach-gold);
  margin-right: 0.5rem;
}

.aach-contact-item a {
  color: var(--aach-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.aach-contact-item a:hover {
  color: var(--aach-gold);
}

.aach-foot-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.aach-nav-link {
  color: var(--aach-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.aach-affiliate-disc {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
}

.aach-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1.5rem;
}

/* Cookie Banner */
.aach-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--aach-navy-light);
  color: var(--aach-white);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--aach-gold);
  transition: transform 0.4s ease;
}

.aach-cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
  line-height: 1.5;
}

.aach-cookie-btn {
  background: var(--aach-gold);
  color: var(--aach-navy);
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--aach-font-body);
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin-left: 1rem;
}

.aach-cookie-btn:hover {
  background: var(--aach-gold-dark);
}

.aach-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

/* Legal Pages */
.aach-legal-sec {
  padding: 6rem 2rem 4rem;
  background: var(--aach-white);
}

.aach-legal-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--aach-text-dark);
}

.aach-legal-content h3 {
  font-family: var(--aach-font-heading);
  font-size: 1.8rem;
  color: var(--aach-navy);
  margin: 2rem 0 1rem;
}

.aach-legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Media Queries */
@media (max-width: 992px) {
  .aach-highlight-grid, .aach-card-layout {
    grid-template-columns: 1fr;
  }
  
  .aach-showcase-h1 {
    font-size: 4rem;
  }
  
  .aach-sec-h2 {
    font-size: 2.8rem;
  }
  
  .aach-footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .aach-footer-lower {
    flex-direction: column;
    text-align: center;
  }
  
  .aach-contacts-box {
    align-items: center;
  }
  
  .aach-foot-nav {
    justify-content: center;
  }
  
  .aach-cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .aach-cookie-btn {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .aach-masthead-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .aach-showcase-sec {
    padding: 6rem 1rem 4rem;
  }
}
