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

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: #f5f3ef;
  color: #1a1a1a;
  line-height: 1.7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Navigation */
nav {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn img {
  height: 24px;
  width: auto;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: #1a1a1a;
}

.nav-logo img,
.nav-logo svg {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  text-align: center;
  border-top: none;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-ctas a {
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.hero-ctas a:hover {
  background: #1a1a1a;
  color: #f5f3ef;
}

.hero-ctas a.primary {
  background: #1a1a1a;
  color: #f5f3ef;
}

.hero-ctas a.primary:hover {
  background: #333;
}

/* Page Headers */
.page-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-top: none;
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-header .subtitle {
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Sections */
section {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2rem;
}

/* What We Do List */
.what-list {
  list-style: none;
}

.what-list li {
  font-size: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.7;
  line-height: 1.6;
}

/* Service Cards (for services page) */
.service-card {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-card:last-child {
  border-bottom: none;
}

.service-card h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-card .details {
  font-style: italic;
  opacity: 0.75;
}

/* Ventures Grid */
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.venture-card {
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.3);
}

.venture-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.venture-desc {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.7;
}

.venture-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 1rem;
}

/* View All Link */
.view-all {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.6;
}

.view-all:hover {
  opacity: 1;
}

/* Contact */
.contact-section {
  text-align: center;
}

.contact-text {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.contact-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(0,0,0,0.3);
  transition: all 0.2s;
}

.contact-btn:hover {
  background: #1a1a1a;
  color: #f5f3ef;
}

/* About Page Styles */
.about-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

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

.principles-list {
  list-style: none;
  margin-top: 1rem;
}

.principles-list li {
  font-size: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.principles-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.principles-list span {
  font-style: italic;
  opacity: 0.75;
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.domain-item {
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.3);
}

.domain-item h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.domain-item p {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.7;
}

/* Footer */
footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 600px) {
  .ventures-grid,
  .services-grid,
  .domains-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-header h1 {
    font-size: 1.8rem;
  }

  /* Mobile Navigation */
  .hamburger-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f3ef;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
    opacity: 1;
  }
}
