/*
 * ============================================================
 * HYPERLINKES GLOBAL BRAND SYSTEM
 * Color Palette + Typography (applied site-wide via <link>)
 * ============================================================
 */

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

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Brand Palette */
  --color-primary:      #008080;   /* Teal */
  --color-primary-dark: #006666;
  --color-primary-light:#00A0A0;
  --color-bg:           #F5F5F0;   /* Boutique Ivory */
  --color-accent:       #87CEEB;   /* Sky Blue */
  --color-gold:         #D4AF37;   /* Luxury Gold */
  --color-text:         #1A1A1A;   /* Charcoal Black */
  --color-text-muted:   #4A5568;
  --color-text-light:   #718096;
  --color-white:        #FFFFFF;
  --color-border:       rgba(0,128,128,0.15);

  /* Gradients */
  --grad-primary:       linear-gradient(135deg, #008080 0%, #006666 100%);
  --grad-gold:          linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  --grad-hero:          linear-gradient(135deg, #008080 0%, #004d4d 60%, #1A1A1A 100%);
  --grad-accent:        linear-gradient(135deg, #87CEEB 0%, #008080 100%);
  --grad-soft:          linear-gradient(135deg, rgba(0,128,128,0.08) 0%, rgba(135,206,235,0.05) 100%);

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,128,128,0.08);
  --shadow-sm:  0 4px 12px rgba(0,128,128,0.10);
  --shadow-md:  0 8px 24px rgba(0,128,128,0.12);
  --shadow-lg:  0 16px 48px rgba(0,128,128,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.12);
  --shadow-gold:0 8px 24px rgba(212,175,55,0.25);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full:9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

/* ── Global Reset (non-destructive – merges with existing) ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.2em;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: var(--color-primary-dark); }

/* ── Utility Classes ─────────────────────────────────────── */
.brand-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand-section        { padding: 100px 0; }
.brand-section-sm     { padding: 60px 0; }
.brand-section-lg     { padding: 120px 0; }

/* Backgrounds */
.bg-ivory   { background: var(--color-bg); }
.bg-white   { background: var(--color-white); }
.bg-teal    { background: var(--color-primary); }
.bg-dark    { background: var(--color-text); }
.bg-soft    { background: var(--grad-soft); }

/* Text */
.text-teal  { color: var(--color-primary); }
.text-gold  { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }
.text-center{ text-align: center; }

/* Gradient text */
.text-gradient-teal {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Brand Buttons ───────────────────────────────────────── */
.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.brand-btn-primary {
  background: var(--grad-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.brand-btn-primary:hover {
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--color-primary-dark);
}

.brand-btn-gold {
  background: var(--grad-gold);
  color: var(--color-text);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}
.brand-btn-gold:hover {
  color: var(--color-text);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.35);
}

.brand-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.brand-btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.brand-btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ── Brand Cards ─────────────────────────────────────────── */
.brand-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,128,128,0.25);
}

.brand-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,128,128,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.brand-card:hover .brand-card-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── Section Header ──────────────────────────────────────── */
.brand-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.brand-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0,128,128,0.08);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.brand-eyebrow-gold {
  color: var(--color-gold);
  background: rgba(212,175,55,0.1);
}

.brand-divider {
  width: 60px;
  height: 4px;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

.brand-divider-gold {
  background: var(--grad-gold);
}

/* ── Stats Badges ────────────────────────────────────────── */
.brand-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.brand-stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ── Gold Badge (premium sections) ──────────────────────── */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

/* ── Accordion / FAQ ─────────────────────────────────────── */
.brand-faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}
.brand-faq-item:hover { box-shadow: var(--shadow-sm); }

.brand-faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  transition: var(--transition-fast);
  border: none;
  width: 100%;
  text-align: left;
}
.brand-faq-question:hover { color: var(--color-primary); }
.brand-faq-question .faq-icon {
  color: var(--color-primary);
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}
.brand-faq-item.active .faq-icon { transform: rotate(180deg); }

.brand-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.brand-faq-item.active .brand-faq-answer { max-height: 400px; }
.brand-faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Strips ──────────────────────────────────────────── */
.brand-cta-strip {
  background: var(--grad-primary);
  padding: 60px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-white);
}
.brand-cta-strip h2,
.brand-cta-strip h3,
.brand-cta-strip p { color: var(--color-white); }

.brand-cta-strip-gold {
  background: var(--grad-gold);
  color: var(--color-text);
}
.brand-cta-strip-gold h2,
.brand-cta-strip-gold h3,
.brand-cta-strip-gold p { color: var(--color-text); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .brand-container { padding: 0 20px; }
  .brand-section   { padding: 70px 0; }
  .brand-section-sm{ padding: 40px 0; }
  .brand-section-lg{ padding: 80px 0; }
  .brand-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brand-section   { padding: 50px 0; }
}
