@charset "UTF-8";
:root {
  --ivory: #FDFAF6;
  --cream: #F7F1E8;
  --burgundy: #722F37;
  --gold: #B8965A;
  --dark: #2A1F1F;
  --gray: #8A7B70;
  --border: #E8DDD0;
}

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

html {
  background: var(--ivory);
}

body {
  font-family: "Jost", sans-serif;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Max-width container — constrains layout on large monitors */
.site-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.site-main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo em {
  color: var(--burgundy);
  font-style: italic;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-links a.active {
  color: var(--dark);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--burgundy);
  color: var(--ivory);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 32px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
  border: 1px solid var(--burgundy);
  cursor: pointer;
}

.btn:hover {
  background: #8B3A44;
  border-color: #8B3A44;
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--ivory);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-name {
  font-family: "Playfair Display", serif;
  font-size: 96px;
  line-height: 1;
  margin-bottom: 40px;
}

.hero-name span {
  display: block;
}

.hero-name .first {
  color: var(--dark);
}

.hero-name .last {
  color: var(--burgundy);
  font-style: italic;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 56px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px;
  gap: 32px;
}

.hero-photo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-photo-caption {
  text-align: center;
}

.hero-photo-caption .quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.5;
}

/* ── INTRO STRIP ── */
.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.intro-item {
  padding: 48px 56px;
  border-right: 1px solid var(--border);
}

.intro-item:last-child {
  border-right: none;
}

.intro-item .item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.intro-item .item-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.5;
}

.intro-item .item-text a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.intro-item .item-text a:hover {
  border-bottom-color: var(--burgundy);
}

/* ── FEATURED ARTICLE ── */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.featured-image {
  background: var(--cream);
  min-height: 480px;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.featured-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.featured-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
}

.tag-featured {
  color: var(--burgundy);
}

.tag-sep {
  color: var(--border);
}

.featured-headline {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.featured-excerpt {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
  border-left: 3px solid var(--burgundy);
  padding-left: 24px;
}

/* ── SECTION HEADER ── */
.section-header {
  padding: 40px 64px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--dark);
}

.section-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
}

.section-link:hover {
  opacity: 0.75;
}

/* ── ARTICLE GRID (3-col, used on writing page) ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  padding: 48px 56px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:nth-child(3n) {
  border-right: none;
}

.card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.3;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--burgundy);
}

.card-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.card-meta {
  font-size: 11px;
  font-weight: 400;
  color: var(--border);
  letter-spacing: 0.1em;
}

/* ── TWO-COLUMN LAYOUT (homepage recent writing) ── */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid var(--border);
}

.col-main {
  border-right: 1px solid var(--border);
}

.col-sidebar {
  background: var(--cream);
}

.sidebar-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--dark);
}

.sidebar-item {
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  justify-content: center;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item .s-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.sidebar-item .s-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-item .s-title a {
  color: inherit;
  text-decoration: none;
}

.sidebar-item .s-title a:hover {
  color: var(--burgundy);
}

/* ── ARTICLE LIST ITEMS (homepage main col) ── */
.article-list-item {
  padding: 48px 64px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 32px;
  align-items: center;
}

.ali-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.ali-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.ali-title a {
  color: inherit;
  text-decoration: none;
}

.ali-title a:hover {
  color: var(--burgundy);
}

.ali-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}

.ali-image {
  overflow: hidden;
  flex-shrink: 0;
  width: 160px;
}

.ali-image img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* ── PAGE HEADER (writing, videos, research) ── */
.page-header {
  padding: 72px 64px 48px;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 20px;
}

.page-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.filter-btn.active {
  background: var(--dark);
  color: var(--ivory);
  border-color: var(--dark);
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 64px 72px;
}

.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}

.video-card:hover {
  box-shadow: 0 6px 24px rgba(42, 31, 31, 0.1);
  transform: translateY(-2px);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream);
  flex-shrink: 0;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.video-card:hover .video-thumb img {
  opacity: 0.9;
}

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.2s;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.video-card:hover .video-play-icon {
  opacity: 1;
}

.video-info {
  padding: 24px 28px 28px;
  flex: 1;
}

.video-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 8px;
}

.video-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ── RESEARCH LIST ── */
.research-list {
  padding: 48px 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.research-entry {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
}

.research-entry-image {
  background: var(--cream);
  overflow: hidden;
  border-right: 1px solid var(--border);
  min-height: 280px;
  position: relative;
}

.research-entry-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.research-entry-content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.research-entry-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--dark);
  line-height: 1.3;
}

.research-entry-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}

/* ── POST PAGE ── */
.post-header {
  padding: 72px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.post-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.post-date {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.post-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 52px;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 820px;
}

.post-excerpt-block {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 680px;
  border-left: 3px solid var(--burgundy);
  padding-left: 24px;
}

.post-image {
  max-height: 480px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  padding: 72px 64px;
  max-width: 860px;
}

.post-external {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-external-note {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
}

.post-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
}

.post-content h2, .post-content h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin: 40px 0 16px;
}

.post-content p {
  margin-bottom: 24px;
}

/* ── ABOUT PAGE ── */
.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
}

.about-header-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-header-right {
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}

.about-photo-ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid var(--cream);
  box-shadow: 0 0 0 1px var(--border);
  flex-shrink: 0;
}

.about-photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-sections {
  border-bottom: 1px solid var(--border);
}

.about-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 680px);
  padding: 64px;
  column-gap: 80px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.about-section:last-child {
  border-bottom: none;
}

.about-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-top: 5px;
}

.about-section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
}

.about-section-body p {
  margin-bottom: 20px;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--burgundy);
  padding: 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .f-name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 12px;
}

.footer-brand .f-name em {
  color: var(--ivory);
  font-style: italic;
}

.footer-brand .f-tag {
  font-size: 12px;
  font-weight: 300;
  color: rgba(253, 250, 246, 0.6);
  letter-spacing: 0.08em;
}

.footer-col-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253, 250, 246, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  background: #4A1E25;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(253, 250, 246, 0.65);
  letter-spacing: 0.08em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-name {
    font-size: 56px;
  }
  .hero-tagline {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-right {
    padding: 48px 24px;
  }
  .hero-photo-frame {
    max-width: 280px;
  }
  .hero-photo-caption .quote {
    font-size: 18px;
  }
  .intro-strip {
    grid-template-columns: 1fr;
  }
  .intro-item {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .intro-item:last-child {
    border-bottom: none;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-image {
    min-height: 260px;
    max-height: 260px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .featured-content {
    padding: 40px 24px;
  }
  .featured-headline {
    font-size: 28px;
  }
  .section-header {
    padding: 28px 24px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    border-right: none;
    padding: 32px 24px;
  }
  .article-card:nth-child(3n) {
    border-right: none;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .col-main {
    border-right: none;
  }
  .article-list-item {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ali-image {
    display: none;
  }
  .ali-title {
    font-size: 22px;
  }
  .sidebar-header {
    padding: 24px 24px 16px;
  }
  .sidebar-item {
    padding: 14px 20px;
    min-height: 60px;
  }
  .page-header {
    padding: 48px 24px 32px;
  }
  .page-title {
    font-size: 36px;
  }
  .filter-bar {
    padding: 16px 24px;
    gap: 6px;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: 10px;
  }
  .video-grid {
    grid-template-columns: 1fr;
    padding: 24px 24px 40px;
    gap: 16px;
  }
  .research-list {
    padding: 24px 24px 48px;
    gap: 20px;
  }
  .research-entry {
    grid-template-columns: 1fr;
  }
  .research-entry-image {
    border-right: none;
    border-bottom: 1px solid var(--border);
    height: 220px;
  }
  .research-entry-content {
    padding: 32px 28px;
  }
  .post-header {
    padding: 40px 24px;
  }
  .post-title {
    font-size: 36px;
  }
  .post-body {
    padding: 40px 24px;
  }
  .about-header {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-header-left {
    padding: 48px 24px 32px;
  }
  .about-header-right {
    padding: 0 24px 48px;
  }
  .about-photo-ring {
    width: 220px;
    height: 220px;
  }
  .about-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    column-gap: 0;
    row-gap: 20px;
  }
  footer {
    padding: 40px 24px 32px;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-explore {
    display: none;
  }
  .footer-social .footer-col-label {
    text-align: center;
  }
  .footer-social .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  .footer-bottom {
    padding: 14px 24px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}
@media (min-width: 901px) and (max-width: 1200px) {
  nav {
    padding: 20px 40px;
  }
  .hero-left {
    padding: 60px 40px;
  }
  .hero-name {
    font-size: 72px;
  }
  .hero-right {
    padding: 40px;
  }
  .featured-content {
    padding: 56px 48px;
  }
  .section-header {
    padding: 32px 48px 24px;
  }
  .article-card {
    padding: 36px 40px;
  }
  .article-list-item {
    padding: 40px 48px;
  }
  .research-entry-content {
    padding: 48px 48px;
  }
  .post-header {
    padding: 56px 48px;
  }
  .post-body {
    padding: 56px 48px;
  }
  footer {
    padding: 56px 48px;
  }
  .footer-bottom {
    padding: 20px 48px;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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