:root {
  --bg: #f8f6f3;
  --surface: #ffffff;
  --ink: #1f1f24;
  --muted: #5f5f63;
  --accent: #f45b69;
  --accent-soft: #ffd5ca;
  --radius: 18px;
  --shadow: 0 25px 60px rgba(24, 29, 49, 0.08);
  --transition: 260ms ease;
}

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

body {
  font-family: 'Space Grotesk', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: url('https://assets.codepen.io/1468070/noise.png');
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.site-header {
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem) 3rem;
  background: var(--surface);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav__links a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(244, 91, 105, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(31, 31, 36, 0.15);
  color: var(--ink);
}

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

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

.hero__social strong {
  font-size: 1.8rem;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  height: 100%;
  min-height: 380px;
}

.hero__note {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(260px, 80%);
}

main section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 5rem);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.75rem 0;
}

.section-header p {
  color: var(--muted);
}

.services {
  margin-top: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.service-card div {
  padding: 0 1.5rem 1.5rem;
}

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

.service-card a {
  color: var(--accent);
  font-weight: 600;
}

.signature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border-radius: 32px;
  padding: clamp(2rem, 6vw, 4rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 2rem;
}

.signature::before,
.signature::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 46px;
  background: radial-gradient(circle at 50% 150%, transparent 45%, rgba(0, 0, 0, 0.08) 46%) repeat-x;
  background-size: 40px 100%;
  opacity: 0.25;
  pointer-events: none;
}

.signature::before {
  top: -20px;
  transform: rotate(180deg);
}

.signature::after {
  bottom: -20px;
}

.signature ul {
  margin: 1.5rem 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.signature li::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--accent);
}

.signature__visual {
  position: relative;
}

.signature__video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.signature__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.signature__badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.team {
  background: #fdfcfa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: top center;
  border-radius: 1.25rem;
  display: block;
  background: #f7f2ee;
  padding: 0.4rem;
}

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

.team-card a {
  color: var(--accent);
  font-weight: 600;
}

.faq {
  background: var(--surface);
  border-radius: 32px;
  margin: 3rem clamp(1.5rem, 6vw, 5rem);
  box-shadow: var(--shadow);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.faq__card {
  background: #fff4f2;
  border-radius: var(--radius);
  padding: 2rem;
}

.faq__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8f7f5;
  border: none;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}

.faq-item__icon {
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  font-weight: 700;
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.testimonials {
  background: #fdfcfa;
}

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

.testimonial-grid article {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-grid p {
  color: var(--muted);
}

.testimonial__meta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.newsletter {
  padding: clamp(3rem, 7vw, 5rem);
}

.newsletter__content {
  background: #1f1f24;
  color: #fff;
  border-radius: 32px;
  padding: clamp(2rem, 6vw, 4rem);
  display: grid;
  gap: 1rem;
}

.newsletter__form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter__form input {
  flex: 1;
  min-width: 220px;
  border-radius: 999px;
  border: none;
  padding: 0.95rem 1.4rem;
}

.newsletter__form button {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
}

.newsletter__note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.newsletter__success {
  font-size: 1.05rem;
  color: #fff;
}

.footer {
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(31, 31, 36, 0.08);
  background: var(--surface);
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 720px) {
  .nav__links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero__note {
    position: static;
    margin-top: 1rem;
  }

  .faq {
    margin: 2rem 1rem;
  }

  .newsletter__form {
    flex-direction: column;
  }
}
