/* --- BASE RESET & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --bg-color: #fcfbf9; /* A beautiful, warm bone white */
  --text-color: #1a1a19; /* A soft charcoal black, much chicer than pure black */
  --accent-color: #8c8c8c; /* Soft grey for meta text */
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Cormorant Garamond', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* --- TYPOGRAPHY --- */
h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/* --- LAYOUT STRUCTURE --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 15vh 0;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .subtext {
  margin-top: 1rem;
  color: var(--accent-color);
}

.manifesto {
  text-align: center;
  padding: 10vh 0 20vh 0;
}

.manifesto p {
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* --- THE SERVICES ACCORDION (NO JS) --- */
.services {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  border-bottom: 1px solid rgba(26, 26, 25, 0.2);
  padding: 2rem 0;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  list-style: none; /* Removes default arrow */
}

summary::-webkit-details-marker {
  display: none; /* Removes arrow in Safari */
}

/* The Custom + and - Icons */
summary::after {
  content: '+';
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '−';
}

/* The Expandable Content */
.tier-list {
  padding: 2rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.tier-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-desc {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-style: italic;
}

/* The Coming Soon Row */
.static-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  color: var(--accent-color);
}

.badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--accent-color);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
}

/* --- BUTTONS & FOOTER --- */
.cta-section {
  text-align: center;
  padding: 20vh 0;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  border: 1px solid var(--text-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

.footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 26, 25, 0.1);
}