/* =============================================
   CROWN GEM — GLOBAL
   Variables · Reset · Utilities
   ============================================= */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C69A59;
  --gold-light: #DFB257;
  --gold-dark: #A97B22;
  --gold-hover: #b58847;
  --gold-bg: #F5ECD9;
  --gold-tint: #FDF9F3;
  --topbar-bg: #EEDFCB;
  --topbar-text: #73542E;
  --navy: #152A26;
  --navy-deep: #0E1F1C;
  --navy-mid: #1E3D37;
  --cream: #FAF7F2;
  --cream-dark: #F3EFE9;
  --off-white: #F8F6F2;
  --card-bg: #F8F5F0;
  --ink: #1B1B1B;
  --text-dark: #222222;
  --muted: #6E7572;
  --text-light: #8E9693;
  --line: #E8E3DA;
  --border: #E2DDD4;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 18px rgba(20, 30, 25, 0.04);
  --shadow-md: 0 10px 40px rgba(20, 40, 35, 0.07);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.05);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Layout ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography Utilities ---------- */
.section-label, .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.18;
}

/* Section head block */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-head p {
  font-size: 14px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Header with Left Title and Right Action (Matches UI Designs) */
.section-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-row-header h2, .section-row-header h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 4px;
}

/* ---------- Buttons ---------- */
.btn-gold, .btn.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover, .btn.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(198, 154, 89, 0.35);
}

.btn-outline-gold, .btn.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-gold:hover, .btn.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--text-dark);
}

/* ---------- Global Responsive ---------- */
@media (max-width: 992px) {
  .container { padding: 0 24px; }
  .section-row-header h2, .section-row-header h3 { font-size: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section-row-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-row-header h2, .section-row-header h3 { font-size: 28px; }
}

/* ============================================================
   GLOBAL PAGE HERO BANNER
   Exact Match for About Us UI Design (About Us.png)
   ============================================================ */
.page-hero {
  position: relative;
  background-image: 
    linear-gradient(
      90deg, 
      rgba(255, 255, 255, 0.65) 0%, 
      rgba(255, 255, 255, 0.45) 30%, 
      rgba(255, 255, 255, 0.15) 55%, 
      rgba(255, 255, 255, 0.0) 80%
    ),
    url('../img/about/5.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding: 80px 0 130px;
}

.page-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.page-hero-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.page-hero-content .eyebrow {
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 500;
  line-height: 1.08;
  color: #8C6430;
  margin: 0;
}

/* .page-hero-content h1 span {
  display: block;
} */

@media (max-width: 768px) {
  .page-hero { padding: 60px 0 90px; }
  .page-hero-content h1 { font-size: 46px; }
  .page-hero-container { padding: 0 20px; }
}

