:root {
  --color-background: #f7f3ed;
  --color-surface: #ffffff;
  --color-surface-accent: #fde5ec;
  --color-text: #2f2a2a;
  --color-muted: #5f5454;
  --color-accent: #ff99a8;
  --color-accent-dark: #ff7a92;
  --shadow: 0 18px 40px rgba(47, 42, 42, 0.12);
  --radius-lg: 28px;
  --grid-gap: 48px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --whatsapp-color: #25D366;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whatsapp-color);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.whatsapp-link:hover {
  opacity: 0.8;
}

.whatsapp-link .fa-whatsapp {
  font-size: 1.2em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 237, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 42, 42, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  text-decoration: none;
  color: var(--color-text);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--color-muted);
  font-weight: 500;
  transition: color 160ms ease;
}

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

.primary-nav a:hover {
  color: var(--color-accent);
}

.hero {
  padding: 140px 0 100px;
  background-image: url('./media/backgrounds/herobackground.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 243, 237, 0.2); /* reduced opacity */
}

.hero-grid {
  display: grid;
  gap: 2.8rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  }
}

.hero-copy h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1.1;
  color: var(--color-text);
}

.hero-copy p {
  margin: 0 0 1.8rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn.cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 153, 168, 0.35);
}

.btn.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 122, 146, 0.4);
}

.hero-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(255, 153, 168, 0.25);
  box-shadow: var(--shadow);
}

.hero-card__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1.2rem;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  color: var(--color-muted);
}

.story p + p {
  margin-top: 1.2rem;
}

.section {
  padding: 110px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(95, 84, 84, 0.7);
}

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

.grid {
  display: grid;
  gap: 1.8rem;
}

.services {
  background: var(--color-surface);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-stack {
  display: grid;
  gap: 2.6rem;
}

.service-stack article {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid rgba(47, 42, 42, 0.1);
  box-shadow: 0 10px 28px rgba(47, 42, 42, 0.08);
}

.service-stack article h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-stack article p {
  margin: 0 0 1.2rem;
  color: var(--color-muted);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
}

.service-list li {
  position: relative;
  padding-left: 1.4rem;
}

.service-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-accent-dark);
  font-weight: 700;
}

.card {
  background: var(--color-surface-accent);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255, 153, 168, 0.25);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(47, 42, 42, 0.18);
}

.card h3,
.card h4 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
}

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

.testimonials {
  background: var(--color-background);
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.quote {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 1.2rem;
}

.role {
  margin: 0;
  color: rgba(95, 84, 84, 0.8);
  font-size: 0.95rem;
}

.footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(47, 42, 42, 0.08);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer-grid h3 {
  margin: 0 0 0.4rem;
  color: var(--color-text);
}

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

.footer-grid a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-grid a:hover {
  color: var(--color-accent-dark);
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(95, 84, 84, 0.8);
}

.cta-section {
  text-align: center;
}

.cta-section p {
  color: var(--color-muted);
  margin: 0 0 2rem;
}

.page-hero {
  background: var(--color-surface);
  padding: 110px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(47, 42, 42, 0.08);
}

.page-hero h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
}

.page-hero p {
  margin: 0;
  color: var(--color-muted);
}

.values-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.value-card {
  background: var(--color-surface-accent);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 153, 168, 0.2);
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid rgba(47, 42, 42, 0.1);
  box-shadow: 0 12px 30px rgba(47, 42, 42, 0.08);
}

.contact-info {
  margin: 0 0 1.2rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact-info span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(95, 84, 84, 0.7);
  margin-bottom: 0.4rem;
}

.contact-info a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(47, 42, 42, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 153, 168, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 153, 168, 0.18);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-button {
  border: none;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255, 122, 146, 0.35);
}

@media (max-width: 768px) {
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .header-bar {
    flex-direction: column;
    gap: 0.8rem;
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .section {
    padding: 90px 0;
  }

  .footer-grid {
    justify-items: stretch;
    text-align: left;
  }
}

/* About Page Styles */
.about-hero {
  padding: 80px 0;
  background-color: var(--color-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

.about-title h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.about-mission {
  padding: 80px 0;
  background-color: var(--color-background);
}

.about-mission h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--color-text);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-title h1 {
    font-size: 2.5rem;
  }

  .about-hero,
  .about-mission {
    padding: 40px 0;
  }

  .about-mission h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
