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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fafaf8;
}

/* ---- Nav ---- */
nav {
  background: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav .logo span {
  color: #e8a525;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav .nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: #fff;
}

/* ---- Hero ---- */
.hero {
  background: #1a1a1a;
  color: #fff;
  padding: 5rem 2rem 5rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1rem;
}
body > .hero h1 {
  margin: 0 auto 1rem;
}
.hero p {
  font-size: 1.15rem;
  color: #999;
  margin: 0 auto 2rem;
}

.hero .cta {
  display: inline-block;
  background: #e8a525;
  color: #1a1a1a;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero .cta:hover {
  background: #d4951f;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .cta-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
}

.hero .cta-secondary:hover {
  background: #2a2a2a;
  border-color: #777;
}

/* full-width dark background behind hero */
body > .hero {
  max-width: none;
}

body > .hero h1,
body > .hero p,
body > .hero .cta {
  max-width: 960px;
}

/* ---- Sections ---- */
section {
  padding: 3.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

section h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

/* ---- Feature Cards ---- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* ---- Steps (How It Works) ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.step {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 1.5rem;
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e8a525;
  color: #1a1a1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.step h3 {
  margin-bottom: 0.4rem;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* ---- CTA Button ---- */
.cta-button {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-button:hover {
  background: #333;
}

/* ---- Contact Form ---- */
.contact-form {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
}

.contact-form h3 {
  margin-bottom: 0.8rem;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---- Gallery ---- */
.gallery h2 {
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.gallery-item {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item p {
  padding: 0.8rem 1rem;
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

.gallery-item p a {
  color: #d4951f;
  text-decoration: none;
  font-weight: 500;
}

.gallery-item p a:hover {
  text-decoration: underline;
}

/* ---- About ---- */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image-wrapper {
  text-align: left;
}

.about-image {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
}

.image-caption {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}

.about-content a {
  color: #d4951f;
  text-decoration: none;
  font-weight: 500;
}

.about-content a:hover {
  text-decoration: underline;
}

/* ---- FAQ ---- */
.faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  color: #e8a525;
  font-weight: 700;
  font-size: 1.3rem;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "\2013"; /* en dash */
}

.faq-item p {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  color: #555;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid #e0ddd8;
  color: #888;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .features,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}
