/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral:    #E8634A;
  --coral-lt: #F0876F;
  --peach:    #F0A882;
  --peach-lt: #FAD4C2;
  --cream:    #FDF3EF;
  --white:    #FEF0ED;
  --ink:      #2D1A15;
  --ink-mid:  #5C3D35;
  --muted:    #9B7168;
  --border:   #F0D5CC;
  --radius:   14px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header / Nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--coral);
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--ink-mid);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--coral);
  text-decoration: none;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 24px rgba(232,99,74,0.28); }

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, #fff 60%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--peach-lt) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FAE3D9 0%, transparent 70%);
  bottom: -60px; left: 5%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--coral);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--ink-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.stat:hover { box-shadow: 0 6px 20px rgba(232,99,74,0.1); }

.stat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.stat-icon-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.stat-icon-svg svg {
  width: 100%;
  height: 100%;
}

.stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232,99,74,0.12);
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-icon-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.product-icon-svg svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Mission ── */
.section-mission {
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
  text-align: center;
}

.mission-inner blockquote p {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 20px;
}

.mission-inner blockquote footer {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-value a { color: var(--coral); }

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: -6px;
}

.contact-form input,
.contact-form textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  background: #fff;
}

.contact-form textarea { resize: vertical; }

.contact-form .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  padding: 40px 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .nav-links { gap: 20px; }
}
