/* Start custom CSS *//* ══ PACIFIC IMPLANT GROUP — SHARED STYLES ══
   Link this in every section file:
   <link rel="stylesheet" href="pig-styles.css">
   Also load Google Fonts in each section's <head>:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
*/

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

:root {
  --black:   #0D0F14;
  --white:   #FFFFFF;
  --blue:    #2A6EBB;
  --blue-lt: #3D85D8;
  --gold:    #C9963A;
  --gold-lt: #E8B856;
  --gray:    #F5F6F8;
  --gray-md: #8A939F;
  --border:  #1E2330;
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.pig-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.pig-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--body);
}

.pig-display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
}

.pig-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.pig-btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.pig-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 27px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.pig-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }/* End custom CSS */