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

:root {
  --primary: #E64C7B;
  --primary-light: #FDE7EF;
  --text: #1F2933;
  --bg: #F5F7FA;
  --white: #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hidden-link {
  display: none !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo a {
  font-family: 'Sacramento', cursive;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--primary);
}

/* Navigation */

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  margin: 4px 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 76, 123, 0.24);
}

.btn-primary:active {
  background-color: #c83a6b;
  transform: scale(0.98);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: #d8b4c8;
  color: #f3e5ef;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

/* Hero */

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.hero-content {
  flex: 1 1 380px;
  max-width: 520px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 75%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sections */

.section {
  padding: 2.5rem 0;
}

.section-light {
  background-color: var(--white);
}

.section-cta {
  background-color: var(--primary);
  color: var(--white);
}

.section-lead {
  max-width: 640px;
  font-size: 1rem;
  color: #4B5563;
}

/* Grids */

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

.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
}

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

.feature h3 {
  font-family: 'Poppins', sans-serif;
}

/* Pills */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: var(--primary-light);
  color: var(--text);
  font-size: 0.85rem;
}

/* CTA */

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

/* Hero small */

.hero-small {
  padding: 2.5rem 0 1.5rem;
}

/* Two-column */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.owner-bio {
  margin-bottom: 1.5rem;
}

..owners {
  display: grid;
  gap: 1.5rem;
}

.owner-header {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.owner-header h2 {
  margin-bottom: 0;
}

.owner-bio {
  background-color: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.owner-bio h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.owners {
  display: grid;
  gap: 1.5rem;
}
  padding: 2.5rem 0 1rem;
}

.hero-small .section-lead {
  max-width: 700px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

/* Steps */

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

.step h3 {
  font-family: 'Poppins', sans-serif;
}

/* Contact callout */

.contact-callout {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-callout h2 {
  margin-bottom: 1rem;
}

.contact-callout p {
  margin-bottom: 1rem;
}

.phone-number {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
}

.phone-number a {
  color: var(--primary);
}

/* Footer */

.site-footer {
  background-color: var(--white);
  border-top: 1px solid #E5E7EB;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #4B5563;
}

/* Text link */

.text-link {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
