:root {
  --bg: #e3dfd8;
  --panel: #ece8e2;

  --text: #1c1c1c;
  --muted: #6b6b6b;
  --line: rgba(0, 0, 0, 0.14);

  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.012em;
}

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

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.narrow {
  max-width: 720px;
}

.header {
  border-bottom: 1px solid var(--line);
  background: rgba(236, 232, 226, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 14px;
}

.brand {
  letter-spacing: 5px;
  font-size: 13px;
  white-space: nowrap;
}

.header-cta {
  font-size: 14px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  white-space: nowrap;
}

.section {
  padding: 64px 0;
}

.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 520;
  margin: 0 0 22px;
  letter-spacing: -0.012em;
}

h2 {
  font-size: 12px;
  font-weight: 650;
  margin: 0 0 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  margin: 0 0 22px;
}

.muted {
  color: var(--muted);
}

.statement {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 26px;
}

.primary-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.86;
  border-radius: 10px;
}

/* Image breaks */
.image-break {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.image-break img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  opacity: 0.86;
  height: 520px;
  object-fit: cover;
}

/* Quote styling */
.quote {
  font-size: 18px;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 2px solid rgba(0, 0, 0, 0.18);
}

/* FAQ (NEW) */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(236, 232, 226, 0.55);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  opacity: 0.75;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 16px 16px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: rgba(236, 232, 226, 0.92);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .container {
    width: calc(100% - 40px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 64px 0;
  }

  .statement {
    font-size: 18px;
  }

  .image-break img {
    height: 320px;
  }

  .faq-item summary {
    padding: 14px 14px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 14px 14px 14px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 18px 0;
  }

  .brand {
    letter-spacing: 4px;
  }

  .hero h1 {
    font-size: 30px;
  }

  p {
    margin-bottom: 18px;
  }
}