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

:root {
  --sand: #fdf9f4;
  --shell: #fff4ec;
  --rose: #f3dede;
  --deep: #543c3e;
  --muted: #7a5f63;
  --accent: #d39aa8;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(84, 60, 62, 0.12);
  --font: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, var(--shell), var(--sand));
  color: var(--deep);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(211, 154, 168, 0.25);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.4rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--deep);
}

.nav-link {
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
}

.nav-link--active {
  background: var(--rose);
  color: var(--deep);
}

.about-page {
  width: min(1200px, 100%);
  margin: 0 auto 4rem;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 222, 221, 0.85));
  border-radius: 36px;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 154, 168, 0.35);
}

.about-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.about-hero__copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--deep);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 18px 35px rgba(84, 60, 62, 0.2);
}

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

.secondary-link {
  font-weight: 600;
  text-decoration: underline;
  color: var(--deep);
}

.about-hero__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(211, 154, 168, 0.4);
  box-shadow: 0 25px 60px rgba(84, 60, 62, 0.12);
}

.about-hero__card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-family: 'Playfair Display', serif;
  color: var(--deep);
}

.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.card-copy {
  margin: 0 0 1rem;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.metrics div {
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  background: rgba(243, 222, 221, 0.6);
}

.metrics dt {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.metrics dd {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
}

.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 25px 60px rgba(84, 60, 62, 0.1);
}

.story-copy h2 {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', serif;
}

.story-copy ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.story-copy li {
  margin-bottom: 0.75rem;
}

.story-panel {
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 222, 221, 0.85));
  border: 1px solid rgba(211, 154, 168, 0.35);
}

.story-panel h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  margin: 0 0 1rem;
}

.pill-list li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(84, 60, 62, 0.2);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.availability {
  border-top: 1px dashed rgba(84, 60, 62, 0.2);
  padding-top: 1rem;
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.about-values article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 1.4rem;
  border: 1px solid rgba(211, 154, 168, 0.35);
  box-shadow: 0 20px 45px rgba(84, 60, 62, 0.08);
}

.about-values h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--deep);
}

.about-values p {
  margin: 0;
  color: var(--muted);
}

.about-cta {
  background: linear-gradient(135deg, rgba(84, 60, 62, 0.92), rgba(129, 94, 100, 0.9));
  color: #fff;
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.about-cta h2 {
  margin: 0.3rem 0 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-cta .primary-btn {
  background: #fff;
  color: var(--deep);
  box-shadow: none;
}

.about-cta .secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(84, 60, 62, 0.12);
  background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  body.nav-ready .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: clamp(1rem, 5vw, 3rem);
    right: clamp(1rem, 5vw, 3rem);
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(84, 60, 62, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 12;
  }

  body.nav-ready .nav-link {
    width: 100%;
    text-align: left;
  }

  body.nav-ready .nav.nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .about-hero,
  .about-story {
    padding: 1.25rem;
    border-radius: 28px;
  }

  .hero-cta,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .site-header .brand {
    width: 100%;
  }
}
