@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --brand-red: #b3131b;
  --brand-red-dark: #8f0e14;
  --brand-red-soft: #fce8ea;
  --text-dark: #1c1d21;
  --text-muted: #5a5c66;
  --white: #ffffff;
  --surface: #fff7f8;
  --border: #ecd7da;
  --success: #2f6a45;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(70, 12, 16, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 10%, #fff2f4 0%, transparent 42%),
    radial-gradient(circle at 90% 15%, #ffe9ec 0%, transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fffafb 60%, #fff4f6 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
  color: var(--brand-red);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
}

.nav-toggle img {
  width: 28px;
  height: 28px;
}

.hero {
  padding: 5.5rem 0 4.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--brand-red-dark);
  background: var(--brand-red-soft);
  border: 1px solid #f6d4d9;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  margin-bottom: 1.15rem;
}

.badge img {
  width: 16px;
  height: 16px;
}

h1,
h2,
h3 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.55rem, 2vw + 0.8rem, 2.2rem);
  margin-bottom: 0.75rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1.22rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(122, 12, 20, 0.16);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, #ce1f29 100%);
  color: var(--white);
}

.button-secondary {
  border: 1px solid #e0b8bf;
  color: var(--brand-red-dark);
  background: var(--white);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid #f2dce0;
  padding: 0.9rem;
}

.metric-card h3 {
  font-size: 1.35rem;
  color: var(--brand-red-dark);
  margin-bottom: 0.25rem;
}

.metric-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section {
  padding: 3.6rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 44px;
  height: 44px;
  background: var(--brand-red-soft);
  border: 1px solid #f2cfd5;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.icon-badge img {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 1.14rem;
  margin-bottom: 0.35rem;
}

.card p {
  color: var(--text-muted);
}

.product-price {
  margin: 0.5rem 0 0.9rem;
  font-weight: 700;
  color: var(--brand-red-dark);
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #f1d3d8;
  margin-bottom: 0.75rem;
  background: #fff6f7;
}

.product-order {
  width: 100%;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.highlight-box {
  background: linear-gradient(160deg, #ffffff 0%, #fff0f2 100%);
  border: 1px solid #f1c9cf;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.highlight-box ul {
  list-style: none;
  margin-top: 0.7rem;
}

.highlight-box li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  color: var(--text-dark);
}

.highlight-box li img {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
}

.service-list li img {
  width: 19px;
  height: 19px;
  margin-top: 0.1rem;
}

.page-hero {
  padding: 4.2rem 0 2.3rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.drip-table {
  width: 100%;
  border-collapse: collapse;
}

.drip-table tbody tr:nth-child(even) {
  background: #fffafb;
}

.drip-table th,
.drip-table td {
  text-align: left;
  padding: 0.9rem;
  border-bottom: 1px solid #f1dce0;
}

.drip-table th {
  font-family: 'Libre Baskerville', serif;
  color: var(--brand-red-dark);
  background: #fff3f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.contact-list li img {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #dcb3bc;
  border-radius: 12px;
  padding: 0.72rem;
  font: inherit;
  background: #fffdfd;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--success);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #fff8f9;
}

.footer-inner {
  min-height: 74px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--brand-red-dark);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 0.7s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.22s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero with Background Image */
.hero-with-bg {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Service List Styling */
.service-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.service-list img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-list span {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Alternate Section Background */
.section-alt {
  background: var(--surface);
}

/* Aesthetics Grid */
.aesthetics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.aesthetics-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.aesthetics-category h3 {
  color: var(--brand-red);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.aesthetics-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.aesthetics-category li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.aesthetics-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border-left: 4px solid var(--brand-red);
  padding: 1rem;
  border-radius: 8px;
}

.benefit-list img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-list span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Story Text */
.story-text {
  margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(70, 12, 16, 0.06);
}

.value-card h3 {
  color: var(--brand-red);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Founder Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-content h3 {
  color: var(--brand-red);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.founder-quote {
  border-left: 4px solid var(--brand-red);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
  font-style: italic;
}

.founder-quote p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .card-grid,
  .highlight-grid,
  .contact-grid,
  .founder-grid,
  .aesthetics-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4.2rem 0 3rem;
  }

  .hero-with-bg {
    min-height: auto;
    align-items: flex-start;
  }

  .table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
  }

  .drip-table { display: table; width: 100%; }
  .drip-table thead { display: table-header-group; }
  .drip-table tbody { display: table-row-group; }
  .drip-table tr {
    display: table-row;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .drip-table th,
  .drip-table td { display: table-cell; text-align: left; }
  .drip-table td::before { display: none; }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 66px;
    width: min(280px, 86vw);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 0.8rem;
    flex-direction: column;
    gap: 0.3rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .founder-quote {
    padding-left: 1rem;
  }

  .founder-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
