@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --ink: #1d1c1a;
  --muted: #6b6157;
  --cream: #f6f1ea;
  --sand: #e7ddcf;
  --linen: #f2ebe3;
  --charcoal: #1f1f1f;
  --accent: #6a3e6b;
  --accent-soft: #d9c2d7;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: "Source Sans 3", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f7f0e7 0%, #f4eee6 40%, #efe7de 100%);
  line-height: 1.7;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 24px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: 8vh 10vw;
  overflow: hidden;
  background: url("assets/sky-414199.jpg") center/cover no-repeat;
}

.hero-media {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 520px;
  color: #fff;
  z-index: 1;
  animation: fadeUp 1s ease forwards;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.lead {
  font-size: 1.1rem;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 600;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6vw;
  padding: 12vh 10vw;
  background: var(--linen);
}

.story-head h2,
.approach h2,
.team h2,
.principles h2,
.trust h2,
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 12px;
}

.story-body {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
  color: var(--muted);
}

.signature {
  margin-top: 24px;
  font-style: italic;
  color: var(--ink);
}

.story-image {
  border-radius: 18px;
  min-height: 520px;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5)),
    url("assets/founder.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.approach {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 6vw;
  padding: 12vh 10vw;
  background: #f9f4ee;
}

.approach p {
  color: var(--muted);
  margin-top: 16px;
}

.approach-compare {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.card {
  padding: 22px;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: var(--charcoal);
  color: #f6f1ea;
}

.card.light {
  background: #f8f4ef;
}

.accent {
  position: relative;
  color: var(--ink);
}

.accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background: var(--accent-soft);
  z-index: -1;
}

.quote {
  background: var(--charcoal);
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.team {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5vw;
  padding: 12vh 10vw;
  background: var(--linen);
}

.team-media {
  border-radius: 18px;
  min-height: 420px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url("assets/team.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.team-content p {
  color: var(--muted);
  margin-top: 12px;
}

.team-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.principles {
  padding: 12vh 10vw;
  background: var(--linen);
}

.principles-head p {
  color: var(--muted);
  margin-top: 12px;
}

.principles-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.trust {
  padding: 12vh 10vw;
  background: linear-gradient(120deg, #1f1f1f 0%, #2b2621 100%);
  color: #fff;
}

.trust .eyebrow.light {
  color: var(--accent-soft);
}

.trust p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

.trust-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.trust-grid span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.cta {
  padding: 12vh 10vw 16vh;
  background: #fff;
}

.cta-content {
  max-width: 680px;
}

.cta p {
  color: var(--muted);
  margin-top: 16px;
}

.muted {
  color: #9b8f83;
}

.site-footer {
  padding: 6vh 10vw;
  background: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  .story,
  .approach,
  .team {
    grid-template-columns: 1fr;
  }

  .principles-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 10vh 8vw;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-left,
  .nav-right {
    gap: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
