:root{
  --bg: #faf8f6;
  --card: #ffffff;
  --muted: #6b7280;
  --ink: #111827;
  --accent: #111111;
  --radius: 12px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* containers */
.container { width: 100%; padding: 0 20px; margin: 0 auto; }
.container.narrow { max-width: 900px; }
.container { max-width: 1200px; }

.container.vision { margin-bottom: 40px; }
.container.stories { margin-bottom: 40px; }
.container.culture { margin-bottom: 40px; }

/* Hero */
.about-hero {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid #f0ece9;
  background: linear-gradient(to bottom right, #ffffff, #f3f2f0);
  box-shadow: inset 0 -2px 8px rgba(0,0,0,0.05);
}
.hero-logo { max-width: 180px; margin: 0 auto 12px; display: block; }
.hero-title {
  font-family: "Spectral", serif;
  font-size: 1.5rem;
  margin: 8px 0;
  letter-spacing: 0.4px;
}
.hero-sub {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* Main sections */
.about-main { padding: 48px 0 15px; }

section { margin-bottom: 48px; }

.vision h2,
.stories h2,
.culture h2,
.cta h2 {
  font-family: "Spectral", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* Split layout for image + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.split.reverse { direction: ltr; }
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.split-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* CTA */
.cta {
  background: linear-gradient(180deg,#fff,#fbfbfb);
  padding: 40px 20px;
  border-radius: 14px;
  border: 1px solid #efece8;
  text-align: center;
}
.cta p { color: var(--muted); margin-bottom: 18px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid #e6e2df;
  box-shadow: none;
}

/* Footer */
.site-footer {
  padding: 26px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #f0ece9;
}

/* Responsive */
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split-media img { height: 220px; }
  .hero-title { font-size: 1.6rem; }
  .hero-sub { font-size: 1rem; }
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.15);
}

.social-links svg {
  stroke: #111; /* default */
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.social-links svg:hover {
  stroke: #ff3b30; /* example highlight color */
  transform: scale(1.15);
}


.follow-section {
  text-align: center;
  margin-top: 50px;
}

.follow-section p {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.15);
}

/* Navbar inside Hero */
.navbar {
  position: absolute;
  top: 20px;
  right: 40px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #222;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #555;
}



/* Footer */
.site-footer {
  padding: 26px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #f0ece9;
}


/* Newsletter Section */
.newsletter {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to bottom, #fdfdfd, #f9f8f6);
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  flex: 1;
  min-width: 240px;
}

.newsletter button {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter button:hover {
  background: #333;
}

#form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #555;
}