@charset "UTF-8";
:root {
  --bg: #faf8f4;
  --bg-alt: #f1ede6;
  --surface: #ffffff;
  --surface-alt: #f5f1ea;
  --border: #e4dfd3;
  --border-subtle: #ede9df;
  --text: #24211d;
  --text-muted: #6b655a;
  --text-on-accent: #fffaf6;
  --accent: #e4572e;
  --accent-subtle: #fbe4d8;
  --accent-muted: #b8431f;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --bg: #171512;
    --bg-alt: #1d1a16;
    --surface: #211e19;
    --surface-alt: #26221c;
    --border: #383228;
    --border-subtle: #2c2820;
    --text: #f5f1e8;
    --text-muted: #a79f8e;
    --text-on-accent: #1a1512;
    --accent: #ff7a47;
    --accent-subtle: #3a2418;
    --accent-muted: #c1501f;
    color-scheme: dark;
  }
}
:root[data-theme=dark] {
  --bg: #171512;
  --bg-alt: #1d1a16;
  --surface: #211e19;
  --surface-alt: #26221c;
  --border: #383228;
  --border-subtle: #2c2820;
  --text: #f5f1e8;
  --text-muted: #a79f8e;
  --text-on-accent: #1a1512;
  --accent: #ff7a47;
  --accent-subtle: #3a2418;
  --accent-muted: #c1501f;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, var(--surface-alt) 0, var(--bg) 55%, var(--bg) 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.section-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.section-intro {
  margin-bottom: 1rem;
}
.section-intro p {
  margin: 0;
}

section {
  margin-top: 2.25rem;
}
section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
section h2 span {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  color: #f8f9ff;
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-subtle);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.pill {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-muted);
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-link {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.brand-link:hover, .brand-link:focus {
  text-decoration: none;
}
.brand-link:hover .brand-name, .brand-link:focus .brand-name {
  color: var(--accent);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
nav a {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
}
nav a:hover, nav a:focus {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-subtle);
}
nav a[aria-current=page] {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface-alt);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font: inherit;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-subtle);
}

.nav-dropdown.is-active-section > .nav-dropdown-toggle {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface-alt);
}

.nav-dropdown-caret {
  width: 0.6rem;
  height: 0.6rem;
  transition: transform 0.15s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 20;
  display: none;
  flex-direction: column;
  min-width: 10rem;
  padding: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.nav-dropdown-menu a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}
.nav-dropdown-menu a[aria-current=page] {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface-alt);
}

.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu,
.nav-dropdown.is-open > .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown.is-open > .nav-dropdown-toggle .nav-dropdown-caret {
  transform: rotate(180deg);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin-left: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.theme-toggle:hover, .theme-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.theme-toggle-icon--sun {
  display: none;
}

.theme-toggle-icon--moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .theme-toggle-icon--sun {
    display: block;
  }
  :root:not([data-theme=light]) .theme-toggle-icon--moon {
    display: none;
  }
}
:root[data-theme=dark] .theme-toggle-icon--sun {
  display: block;
}
:root[data-theme=dark] .theme-toggle-icon--moon {
  display: none;
}

:root[data-theme=light] .theme-toggle-icon--sun {
  display: none;
}
:root[data-theme=light] .theme-toggle-icon--moon {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-main h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin: 0 0 0.4rem;
}
.hero-main h1 span {
  color: var(--accent);
}

.hero-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-summary {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}
.hero-summary strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  display: grid;
  gap: 0.75rem;
  background: radial-gradient(circle at top left, var(--surface-alt) 0, var(--surface) 48%);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.hero-meta-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--text);
  text-align: right;
}

.hero-contact {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.hero-contact a {
  font-size: 0.8rem;
  color: var(--text);
}

.post-list {
  display: grid;
  gap: 1rem;
  margin: 0.25rem 0 1.25rem;
}

.post-list--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.post-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.05s ease;
}
.post-card:hover, .post-card:focus {
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-1px);
}

.post-card-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.post-meta-sep {
  opacity: 0.6;
}

.post-card-title {
  font-size: 1.08rem;
  margin: 0.35rem 0 0.3rem;
  color: var(--text);
}

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.post-empty p {
  margin: 0;
}

.post-header {
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.5rem 0 0.4rem;
}

.post-description {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.post-tags {
  display: inline-flex;
  gap: 0.35rem;
}

.post-content {
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 42rem;
}
.post-content p {
  color: var(--text);
  font-size: inherit;
}
.post-content h2,
.post-content h3 {
  color: var(--text);
  margin-top: 2rem;
}
.post-content a {
  color: var(--accent);
}
.post-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85em;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.35em;
}
.post-content pre {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  overflow-x: auto;
}
.post-content pre code {
  border: none;
  padding: 0;
  background: none;
}
.post-content blockquote {
  margin: 1.25rem 0;
  padding: 0.25rem 1.1rem;
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
}
.post-content img {
  max-width: 100%;
  border-radius: 18px;
}

.post-footer {
  margin-top: 2.5rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.25rem;
}

.project-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.05s ease;
}
.project-card:hover, .project-card:focus {
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-1px);
}

.project-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.project-card-title {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.project-card-status {
  color: var(--accent);
  border-color: var(--accent-subtle);
  background: var(--accent-subtle);
}

.project-card-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.project-card .pill-row {
  margin-top: 0.75rem;
}

.card-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.aside-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  cursor: default;
}
.aside-card:hover, .aside-card:focus {
  border-color: var(--border);
  transform: none;
}

.aside-link {
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}
.aside-link:hover, .aside-link:focus {
  border-color: var(--accent);
  transform: none;
}

.poem-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.5rem 0 0.4rem;
}

.poem-series-breadcrumb {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.poem-series-breadcrumb a {
  color: var(--accent);
}

.poem-body {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 34rem;
  color: var(--text);
}
.poem-body p {
  margin: 0 0 1.4rem;
  color: inherit;
  font-size: inherit;
}

.poem-series-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.poetry-collection-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 28rem;
}
.poetry-collection-list li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
}
.poetry-collection-list li a:hover, .poetry-collection-list li a:focus {
  border-color: var(--accent);
  text-decoration: none;
}

.poetry-collection-list-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 1.5rem;
}

.poetry-collection-list-title {
  font-size: 0.95rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.photo-thumb {
  display: block;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-alt);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.photo-thumb:hover img, .photo-thumb:focus-visible img {
  transform: scale(1.03);
}

.photo-index-card {
  padding: 0;
  overflow: hidden;
}
.photo-index-card .project-card-header {
  margin-top: 0.85rem;
  padding: 0 1.1rem;
}
.photo-index-card .project-card-description {
  padding: 0 1.1rem 1rem;
}

.photo-index-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1.25rem;
}

.media-filter {
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.media-filter:hover, .media-filter:focus-visible {
  border-color: var(--accent);
  color: var(--text);
}
.media-filter.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text-on-accent);
}

.media-status {
  color: var(--accent);
  border-color: var(--accent-subtle);
  background: var(--accent-subtle);
}

.media-rating {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin: 0.3rem 0;
}

.media-entry-cover {
  display: block;
  max-width: 220px;
  border-radius: 18px;
  margin: 1rem 0;
}

.now-type-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 1.75rem 0 0.5rem;
}
.now-type-heading:first-of-type {
  margin-top: 0.5rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 6, 0.94);
  padding: 2.5rem;
}
.lightbox[hidden] {
  display: none;
}

body.lightbox-lock {
  overflow: hidden;
}

.lightbox-figure {
  margin: 0;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #f5f1e8;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.85;
}
.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(245, 241, 232, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #f5f1e8;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lightbox-close:hover, .lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: #ff7a47;
  color: #ff7a47;
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 1rem;
  }
  .lightbox-nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}

.skill-group h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}
.skill-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.skill-group li {
  margin: 0.1rem 0;
  position: relative;
  padding-left: 0.85rem;
}
.skill-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.18rem;
}

.timeline {
  border-left: 2px solid var(--border);
  margin-left: 0.45rem;
  padding-left: 1rem;
}

.job {
  position: relative;
  padding: 0.6rem 0 0.75rem;
}
.job::before {
  content: "";
  position: absolute;
  left: -1.13rem;
  top: 0.85rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-subtle);
}

.job-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  align-items: baseline;
}

.job-company {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.job-dates {
  font-size: 0.8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: var(--text-muted);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.job-role {
  font-weight: 500;
  color: var(--text-muted);
}

.job-location {
  opacity: 0.85;
}

.job-highlights {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.job-highlights li {
  margin: 0.15rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-item {
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-all;
}

footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  header.site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-meta {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media print {
  body {
    background: #ffffff;
  }
  .page {
    padding: 0.5in;
  }
  header.site-header,
  nav a,
  .btn {
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
  }
}

/*# sourceMappingURL=main.css.map */