 :root {
  --bg-main: #fff5f6;
  --bg-panel: #ffe9ed;
  --bg-panel-alt: #ffe0e6;
  --bg-glass: rgba(255, 240, 243, 0.9);
  --accent: #f45d6b;
  --accent-strong: #d8435e;
  --accent-soft: #ff939f;
  --text-main: #4b1b24;
  --text-muted: #8d4e5b;
  --stroke: rgba(244, 93, 107, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-strong: 0 20px 60px rgba(212, 64, 95, 0.25);
  --shadow-soft: 0 12px 30px rgba(212, 64, 95, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #fff9fb 0%, #ffeef2 45%, #fff6f7 100%);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--text-main);
  opacity: 0.8;
}

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.announcement {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  background: rgba(244, 93, 107, 0.08);
  color: var(--accent-strong);
  border-bottom: 1px solid rgba(244, 93, 107, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 236, 240, 0.9);
  border-bottom: 1px solid rgba(244, 93, 107, 0.12);
  box-shadow: 0 8px 24px rgba(244, 93, 107, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 56px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.site-nav a {
  color: var(--text-main);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--accent-strong);
  border-color: rgba(244, 93, 107, 0.3);
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(255, 147, 159, 0.35), transparent 55%);
}

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

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.hero__content p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__glass {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.hero__glass img {
  border-radius: var(--radius-md);
}

.notice {
  padding: 2rem 0 0;
}

.notice__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: #fff0f2;
  box-shadow: var(--shadow-soft);
}

.notice__card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.notice__card p {
  margin: 0;
}

.superfoods {
  padding: 4rem 0 2rem;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: 2.4rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.food-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.food-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 147, 159, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.food-card:hover::after {
  opacity: 1;
}

.food-card img {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  height: 180px;
  object-fit: cover;
}

.food-card h3 {
  margin: 0 0 0.6rem;
}

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

.highlight {
  padding: 4rem 0;
}

.highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.highlight__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 130, 141, 0.2), transparent 60%);
  pointer-events: none;
}

.highlight__media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.highlight__content h2 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
}

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

.product {
  padding: 4rem 0;
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-panel-alt);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.product__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 166, 176, 0.5), transparent 55%);
  pointer-events: none;
}

.product__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: 4rem 0;
}

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

.page-hero__content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

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

.page-hero__media {
  display: flex;
  justify-content: center;
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-glass);
  box-shadow: var(--shadow-soft);
}

.glass-card img {
  border-radius: var(--radius-md);
}

.info-grid {
  padding: 2rem 0 4rem;
}

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

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.info-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.highlight--alt .highlight__grid {
  background: #fff0f5;
}

.legal-content {
  padding: 2rem 0 5rem;
}

.legal-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-glass);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.legal-section p {
  margin: 0;
  color: var(--text-muted);
}

.legal-section p + p {
  margin-top: 1rem;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
 	padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-strong) 0%, #b62e4e 100%);
}

.contact {
  padding: 4rem 0 5rem;
}

.contact__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--bg-panel);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.contact__form {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
}

.contact__form input,
.contact__form textarea {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: #fff8fa;
  color: var(--text-main);
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 93, 107, 0.2);
}

.contact__form textarea {
  resize: vertical;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer {
  background: #ffe9ed;
  padding: 4rem 0;
  border-top: 1px solid var(--stroke);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.site-footer p {
  margin-top: 0;
  color: var(--text-muted);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0;
}

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

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

.copyright {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .legal-card,
  .highlight__grid,
  .product__grid,
  .contact__card {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero,
  .superfoods,
  .highlight,
  .product,
  .contact {
    padding: 3rem 0;
  }

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

  .contact__card,
  .legal-card {
    padding: 1.75rem;
  }
}
:root {
  --bg-base: #fdf8f1;
  --bg-card: #ffffff;
  --border: #e5dbcf;
  --accent: #2f7c73;
  --accent-strong: #1f5a53;
  --text-main: #1e1c1a;
  --text-muted: #6b6359;
  --shadow: 0 18px 40px rgba(38, 41, 43, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

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

.announcement {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.9rem 1rem;
  background: #efe5d8;
  color: var(--accent-strong);
  border-bottom: 1px solid var(--border);
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 52px;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.site-nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  border-color: var(--accent);
}

.hero {
  padding: 4rem 0;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.hero__content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.05rem;
}

.hero__media {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.notice {
  padding: 1.5rem 0 0;
}

.notice__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.notice__card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.superfoods,
.highlight,
.product,
.contact {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  font-size: 2.3rem;
}

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

.food-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fffdf8;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.food-card h3 {
  margin: 0;
}

.highlight__grid,
.product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.highlight__media img,
.product__media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.page-hero,
.legal-content {
  padding: 4rem 0;
}

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

.page-hero__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.page-hero__media .glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.info-grid {
  padding: 2rem 0 4rem;
}

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

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.info-note {
  margin-top: 1.5rem;
  text-align: center;
}

.legal-card,
.contact__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.legal-list {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.legal-list li {
  margin-bottom: 0.4rem;
}

.contact__form {
  display: grid;
  gap: 1.25rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
}

.contact__form input,
.contact__form textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fffbf5;
  color: var(--text-main);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact__form textarea {
  resize: vertical;
}

.form-feedback {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.site-footer {
  background: #f0e6da;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0;
}

.legal-nav a {
  font-weight: 600;
}

.copyright {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .site-nav {
    align-items: center;
  }
}
