/* ============================================================
   Hudson Blake – Actuary Portfolio
   Palette: Deep Navy #0B1628 | Cream #F5F0E8 | Gold #C8A96E
   Fonts: Playfair Display (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1628;
  --navy2:  #132240;
  --cream:  #F5F0E8;
  --cream2: #EDE7D9;
  --gold:   #C8A96E;
  --gold2:  #A8894E;
  --white:  #FFFFFF;
  --text:   #1C2B44;
  --muted:  #6B7C93;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Utility ─────────────────────────────────────────────── */
.gold { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   FIXED / STICKY NAV  (About, Work, Contact pages)
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  transition: transform 0.38s var(--ease), opacity 0.38s var(--ease);
}

.site-nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
}
.nav-links a.active::after { width: 100%; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Slideshow */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  /* Placeholder gradient stands in for real photos */
}
.slide.active { opacity: 1; }

/* Placeholder tinted backgrounds until real photos added */
.slide:nth-child(1) { background-image: url('images/super_cool_guy.jpeg'); background-color: #1a2a4a; }
.slide:nth-child(2) { background-image: url('images/just_pondering.jpeg'); background-color: #0f1e36; }
.slide:nth-child(3) { background-image: url('images/enthusiasm_is_key.jpeg'); background-color: #162035; }
.slide:nth-child(4) { background-image: url('images/i_can_see_your_soul.jpg'); background-color: #0d1a30; }
.slide:nth-child(5) { background-image: url('images/wasnt_i_a_cute_child.jpg'); background-color: #111d33; }

/* Dark overlay for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,14,28,0.25) 0%,
    rgba(8,14,28,0.4)  60%,
    rgba(8,14,28,0.72) 100%
  );
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90vw;
}

.hero-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--white);
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}

.hero-title {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  font-size: clamp(2.5rem, 9vw, 9rem);
  line-height: 0.9;  letter-spacing: 0.18em;
  text-shadow: 0 3px 20px rgba(0,0,0,0.5), 0 1px 5px rgba(0,0,0,0.35);
  margin-top: 0.12em;
}

/* Gold divider line between name and title */
.hero-divider {
  display: block;
  width: 3px;
  height: 0;
  background: var(--gold);
  margin: 0.25em auto;
  opacity: 0;
  animation: growDivider 1s 0.6s var(--ease) forwards;
}
@keyframes growDivider {
  to { height: 48px; opacity: 1; }
}

/* Home nav – bottom of screen */
.home-nav {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 56px;
  list-style: none;
}

.home-nav a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}
.home-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.home-nav a:hover { color: var(--white); }
.home-nav a:hover::after { left: 0; right: 0; }
.home-nav a.active { color: var(--white); font-weight: 700; }
.home-nav a.active::after { left: 0; right: 0; }

/* Slide indicators */
.slide-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ============================================================
   PAGE WRAPPER (inner pages)
   ============================================================ */
.page-wrapper {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── Section / Container ─────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--navy);
  padding: 100px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle geometric accent */
.about-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.12);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.08);
  pointer-events: none;
}

.about-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.about-heading span { color: var(--gold); }

.about-subline {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.75);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

/* About body section */
.about-body {
  padding: 80px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder for photo */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy2) 0%, #1a3050 100%);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(200,169,110,0.12);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(200,169,110,0.06), transparent);
}
.photo-placeholder svg {
  width: 64px; height: 64px;
  opacity: 0.25;
  margin-bottom: 12px;
}

/* Gold accent bar */
.about-photo-wrap .accent-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0 0;
}

/* About text content */
.about-text h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.82;
  margin-bottom: 22px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================================
   WORK PAGE
   ============================================================ */
.work-hero {
  background: var(--cream2);
  padding: 80px 48px 64px;
  border-bottom: 1px solid rgba(11,22,40,0.08);
}

.work-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
  font-weight: 600;
}

.work-hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  max-width: 600px;
}

.work-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--cream2);
}
.work-section:last-child { border-bottom: none; }

.work-title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
}

.work-num {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.work-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.work-subhead {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 0px;
  line-height: 1.7;
}

/* Excel embed container */
.excel-embed {
  width: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(11,22,40,0.1);
  box-shadow: 0 4px 32px rgba(11,22,40,0.06);
}

.excel-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Placeholder for embed */
.embed-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #f8f6f2 0%, #eee8dd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  gap: 12px;
}
.embed-placeholder svg {
  width: 40px; height: 40px;
  opacity: 0.35;
}
.embed-placeholder p {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 48px 100px;
}

.contact-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.contact-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.08;
  margin-bottom: 14px;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  text-align: center;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Form */
.contact-form {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.85);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.22);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.06);
}

.form-field textarea {
  height: 160px;
  resize: vertical;
  min-height: 120px;
}

/* Required asterisk */
.form-field label .req {
  color: var(--gold);
  margin-left: 3px;
}

/* Submit button */
.btn-submit {
  align-self: flex-end;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  padding: 16px 44px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

/* Form error message (shown if submission fails) */
.form-error {
  display: none;
  color: #e05c5c;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  margin: 0;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-style: italic;
}

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid rgba(200,169,110,0.1);
}

.footer-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  justify-self: start; 
}
.footer-name span { color: var(--gold); opacity: 0.8; }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  justify-self: center;
}

/* Contact page footer tweak */
.contact-page .site-footer {
  border-top-color: rgba(200,169,110,0.15);
}

/* ============================================================
   ANIMATIONS & ENTRANCE
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   INFO ICON (all pages)
   ============================================================ */
.info-icon-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}

.info-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.55);
  background: rgba(11,22,40,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
.info-icon-btn:hover {
  background: rgba(11,22,40,0.92);
  border-color: var(--gold);
}

.info-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 4px;
  padding: 0;
  width: 200px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.info-icon-wrap.open .info-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.info-popup strong {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.info-popup span {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.01em;
}
.video-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HAMBURGER MENU (mobile, all pages)
   ============================================================ */

/* The button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 310;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease);
  transform-origin: center;
}

/* X state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile nav drawer */
.mobile-nav-overlay {
  display: none; /* shown via JS + class */
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0;
}

.mobile-nav-overlay ul a {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.mobile-nav-overlay ul a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}

.mobile-nav-overlay ul a:hover,
.mobile-nav-overlay ul a.active {
  color: var(--white);
}

.mobile-nav-overlay ul a:hover::after,
.mobile-nav-overlay ul a.active::after {
  left: 0; right: 0;
}

/* Home-page hamburger — positioned top-right over the hero */
.hero-hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 310;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 24px; }
  .site-nav { padding: 0 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { position: static; max-width: 300px; }

  .form-row { grid-template-columns: 1fr; }

  /* Hide bottom home-nav on mobile — hamburger replaces it */
  .home-nav { display: none; }

  .about-hero, .work-hero { padding-left: 24px; padding-right: 24px; }
  .contact-inner { padding-left: 24px; padding-right: 24px; }

  .about-stat-row { flex-wrap: wrap; gap: 28px; }

  .site-footer { flex-direction: column; gap: 10px; text-align: center; display: flex; align-items: center; }
  .footer-name { display: none; }

  /* Show hamburger, hide inline nav links */
  .hamburger { display: flex; }
  .nav-links { display: none; }

  /* Show the overlay as flex when open class applied */
  .mobile-nav-overlay { display: flex; }
}

@media (max-width: 560px) {
  .btn-submit { align-self: stretch; text-align: center; }
}
