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

body {
  font-family: 'Courier New', monospace;
  background: #ffffff;
  color: #1e2a1e;
  font-size: 17px;
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }

/* Ticker bar */
.ticker-bar {
  background: rgb(45, 74, 62);
  color: #ffffff;
  padding: 6px 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  text-align: center;
}

.ticker-track {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.ticker-repeat,
.ticker-spacer {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 28px;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #d8d4d0;
  padding: 0 0 0 40px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top img.logo {
  height: 48px;
  width: auto;
  display: block;
}

.menu-wrap {
  position: relative;
  cursor: pointer;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.menu-icon {
  height: 90px;
  width: auto;
  display: block;
}

.menu-links {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 12px;
  z-index: 200;
}

.menu-wrap.open .menu-links,
.menu-wrap:hover .menu-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 16px 20px;
}

.menu-links a {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #1e2a1e;
  text-decoration: none;
  white-space: nowrap;
}

.header-bottom {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  opacity: 0.55;
  text-align: center;
}

.today-placement {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  max-height: 580px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.callout {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(45, 74, 62, 0.65);
  color: #ffffff;
  padding: 28px 36px;
  max-width: 380px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.6;
}

.content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 30px;
}

.content section {
  margin-bottom: 60px;
  border-bottom: 1px solid #e2deda;
  padding-bottom: 60px;
}

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

h2 {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

p { margin-bottom: 16px; }
em { font-style: italic; }

ul { list-style: none; padding: 0; }

ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #e2deda;
}

ul li:last-child { border-bottom: none; }

ul li::before {
  content: '—';
  position: absolute;
  left: 0;
}

.values-list li {
  padding-left: 0;
  border-bottom: 1px solid #e2deda;
  padding-top: 16px;
  padding-bottom: 16px;
}

.values-list li::before { display: none; }

.values-list strong {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

blockquote {
  border-left: 1px solid #1e2a1e;
  margin: 12px 0 0 8px;
  padding: 8px 0 8px 20px;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.newsletter-section {
  text-align: center;
  padding: 20px 0;
}

.newsletter-section a {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #1e2a1e;
  padding: 8px 20px;
  display: inline-block;
  color: #1e2a1e;
}

footer {
  border-top: 1px solid #d8d4d0;
  text-align: center;
  padding: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* Work with Me page */
.wwm-media video,
.wwm-media img {
  width: 100%;
  display: block;
}

.wwm-media-contained img {
  display: block;
  max-height: 740px;
  width: auto;
  margin: 0 auto;
}

.offerings-list {
  list-style: none;
  padding: 0;
}

.offerings-list li {
  padding: 24px 0;
  border-bottom: 1px solid #e2deda;
}

.offerings-list li:last-child {
  border-bottom: none;
}

.offerings-list li::before {
  display: none;
}

.offering-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.offering-header strong {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offering-price {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

.offerings-list p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.offering-link {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e2a1e;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .site-header {
    padding: 0 0 0 16px;
    height: 80px;
    top: 65px;
  }

  .header-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .header-top > a {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .menu-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .menu-icon {
    height: 80px;
    width: auto;
    display: block;
  }

  .header-top img.logo {
    height: 36px;
  }

  .callout {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 92%;
    bottom: 0;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .content {
    padding: 30px 20px;
  }

  .wwm-media-contained img {
    width: 100%;
    max-height: none;
  }

  .header-bottom {
    display: none;
  }

  .today-placement {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    opacity: 0.55;
    text-align: center;
    padding: 28px 20px;
  }
}
