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

:root {
  --hgr-primary: #0A192F;
  --hgr-secondary: #D4AF37;
  --hgr-text: #333333;
  --hgr-bg: #FAFAFA;
  --hgr-surface: #FFFFFF;
  --hgr-border: #E0E0E0;
  --hgr-accent: #E63946;
  --hgr-font-head: 'Playfair Display', serif;
  --hgr-font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--hgr-font-body); background-color: var(--hgr-bg); color: var(--hgr-text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* header */
.hgr-top-nav { background-color: var(--hgr-primary); color: var(--hgr-surface); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--hgr-secondary); }
.hgr-brand-area { display: flex; flex-direction: column; }
.hgr-logo-abbr { font-family: var(--hgr-font-head); font-size: 2rem; font-weight: 700; color: var(--hgr-secondary); line-height: 1; }
.hgr-brand-name { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; font-weight: 600; }
.hgr-brand-sub { font-size: 0.8rem; opacity: 0.8; }
.hgr-badge-wrap { display: flex; align-items: center; }
.hgr-age-badge { background-color: var(--hgr-accent); color: #FFF; font-weight: 700; padding: 0.5rem 1rem; border-radius: 50px; font-size: 1.2rem; border: 2px solid #FFF; }

/* hero */
.hgr-showcase { padding: 8rem 5%; background: linear-gradient(135deg, var(--hgr-primary) 0%, #112B50 100%); color: var(--hgr-surface); text-align: center; }
.hgr-showcase-kicker { display: inline-block; padding: 0.5rem 1.5rem; border: 1px solid var(--hgr-secondary); color: var(--hgr-secondary); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 2rem; border-radius: 4px; }
.hgr-showcase-title { font-family: var(--hgr-font-head); font-size: 4.5rem; margin-bottom: 1.5rem; color: var(--hgr-secondary); }
.hgr-showcase-desc { max-width: 800px; margin: 0 auto 4rem auto; font-size: 1.2rem; opacity: 0.9; line-height: 1.8; }
.hgr-info-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.hgr-info-box { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.3); padding: 2rem; border-radius: 8px; flex: 1; min-width: 250px; }
.hgr-info-title { font-family: var(--hgr-font-head); color: var(--hgr-secondary); font-size: 1.5rem; margin-bottom: 0.5rem; }
.hgr-info-text { font-size: 1rem; opacity: 0.8; }

/* sections common */
.hgr-content-block { padding: 6rem 5%; }
.hgr-content-block:nth-child(even) { background-color: var(--hgr-surface); }
.hgr-block-header { text-align: center; margin-bottom: 4rem; }
.hgr-block-title { font-family: var(--hgr-font-head); font-size: 3rem; color: var(--hgr-primary); margin-bottom: 1rem; }
.hgr-block-intro { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: #555; }
.hgr-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.hgr-detail-card { background: var(--hgr-bg); border: 1px solid var(--hgr-border); padding: 3rem 2rem; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; border-top: 4px solid var(--hgr-primary); }
.hgr-detail-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top-color: var(--hgr-secondary); }
.hgr-card-kicker { color: var(--hgr-secondary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; display: block; }
.hgr-card-title { font-family: var(--hgr-font-head); font-size: 1.8rem; color: var(--hgr-primary); margin-bottom: 1rem; }
.hgr-card-text { margin-bottom: 1.5rem; font-size: 1rem; color: #666; }
.hgr-card-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: #444; }
.hgr-card-list li::before { content: '\2756'; position: absolute; left: 0; top: 0; color: var(--hgr-secondary); font-size: 0.8rem; line-height: 1.5; }

/* footer */
.hgr-bottom-bar { background-color: var(--hgr-primary); color: var(--hgr-surface); padding: 4rem 5% 2rem; border-top: 3px solid var(--hgr-secondary); }
.hgr-bottom-slogan { text-align: center; font-family: var(--hgr-font-head); font-size: 2.5rem; color: var(--hgr-secondary); margin-bottom: 3rem; }
.hgr-bottom-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.hgr-bottom-col h4 { font-family: var(--hgr-font-head); font-size: 1.5rem; color: var(--hgr-secondary); margin-bottom: 1.5rem; }
.hgr-bottom-col p { font-size: 0.95rem; opacity: 0.8; line-height: 1.8; margin-bottom: 1rem; }
.hgr-bottom-nav a { display: block; margin-bottom: 0.8rem; opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.hgr-bottom-nav a:hover { opacity: 1; color: var(--hgr-secondary); }
.hgr-bottom-legal { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; opacity: 0.6; line-height: 1.6; }

/* Cookie Banner */
.hgr-cookie-banner { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(10, 25, 47, 0.98); color: #fff; padding: 1.5rem; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); }
.hgr-cookie-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
@media (min-width: 768px) { .hgr-cookie-content { flex-direction: row; justify-content: space-between; text-align: left; } }
.hgr-cookie-content p { font-size: 0.9rem; margin: 0; flex: 1; line-height: 1.5; opacity: 0.9; }
.hgr-cookie-actions { display: flex; gap: 1rem; }
.hgr-cookie-btn { border: none; padding: 0.8rem 1.5rem; border-radius: 4px; cursor: pointer; font-weight: bold; transition: all 0.3s ease; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.hgr-cookie-btn-accept { background-color: var(--hgr-secondary); color: var(--hgr-primary); }
.hgr-cookie-btn-accept:hover { background-color: #e6c555; }
.hgr-cookie-btn-decline { background-color: transparent; color: #fff; border: 1px solid #fff; }
.hgr-cookie-btn-decline:hover { background-color: rgba(255,255,255,0.1); }

@media (max-width: 900px) {
  .hgr-bottom-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hgr-showcase-title { font-size: 3rem; }
  .hgr-top-nav { flex-direction: column; text-align: center; gap: 1rem; }
  .hgr-badge-wrap { margin-top: 1rem; }
}
