/* =========================
   GLOBAL
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

main {
  min-height: calc(100vh - 220px);
  padding-bottom: 20px;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-content {
  padding: 22px 0 48px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #111111;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #444444;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 22px;
  color: #444444;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #111111;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-secondary {
  background: #ffffff;
  color: #222222;
  border: 1px solid #d7d7d7;
}

.btn-secondary:hover {
  background: #fafafa;
  border-color: #bbbbbb;
}

.text-link {
  display: inline-block;
  margin-top: 2px;
  font-weight: 600;
  text-decoration: none;
  color: #111111;
}

.text-link:hover {
  text-decoration: underline;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #ffffff;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0 20px;
}

.branding {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.branding img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b7b7b;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 16px;
  color: #333333;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #111111;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #ece9e2;
  margin-top: 8px;
}

.footer-inner {
  padding: 18px 0 22px;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
  font-size: 14px;
  color: #777777;
  line-height: 1.8;
}

.footer-links a {
  text-decoration: none;
  color: #777777;
}

.footer-links a:hover {
  color: #111111;
  text-decoration: underline;
}

.footer-links span {
  margin: 0 8px;
  color: #b0a99d;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #777777;
}

.footer-bottom img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.sugar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  vertical-align: middle;
}

.paw-icon {
  width: 18px;
  height: 18px;
  fill: #777777;
  transition: all 0.2s ease;
}

.sugar-link:hover .paw-icon {
  fill: #111111;
  transform: translateY(-1px);
}

/* =========================
   HOME PAGE
========================= */
.home-layout {
  max-width: 1120px;
}

.home-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

.hero-block {
  padding: 8px 0 6px;
}

.hero-block h1 {
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-intro {
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  color: #444444;
  margin-bottom: 16px;
}

.hero-block p {
  max-width: 690px;
}

.info-panel {
  background: #f7f6f3;
  border-radius: 22px;
  padding: 32px 28px;
}

.info-panel h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.info-panel h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.info-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-panel li {
  padding: 16px 0;
  border-top: 1px solid #e6e3de;
  color: #444444;
}

.info-panel li:first-child {
  border-top: none;
  padding-top: 0;
}

.home-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.section {
  background: #fcfcfb;
  border: 1px solid #efede8;
  border-radius: 22px;
  padding: 24px 24px 22px;
  height: 100%;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section p:last-child {
  margin-bottom: 0;
}

.cta-section {
  background: #f4f1eb;
  border: none;
}

/* =========================
   ABOUT PAGE
========================= */
.about-page {
  max-width: 1120px;
}

.about-page-intro {
  max-width: 860px;
  margin-bottom: 36px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  background: #ffffff;
  border: 1px solid #e9e5de;
  border-radius: 22px;
  padding: 28px;
}

.about-image-wrap {
  width: 240px;
  flex-shrink: 0;
}

.about-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  background: #f7f6f3;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 17px;
  color: #555555;
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #444444;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  max-width: 1120px;
}

.contact-page-intro {
  max-width: 860px;
  margin-bottom: 36px;
}

.contact-page-intro h1 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-page-intro p {
  font-size: 16px;
  line-height: 1.7;
}

.contact-page-intro p:last-child {
  margin-bottom: 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: #faf8f5;
  border-radius: 22px;
  padding: 28px 24px;
}

.contact-info-card h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-info-group {
  margin-bottom: 26px;
}

.contact-info-group:last-of-type {
  margin-bottom: 0;
}

.contact-info-group h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.contact-info-group p,
.contact-info-note p {
  margin: 0;
  line-height: 1.8;
  color: #444444;
}

.contact-info-card a {
  color: #111111;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e4e1db;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e9e5de;
  border-radius: 22px;
  padding: 28px 28px 32px;
}

.contact-form {
  margin-top: 6px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #222222;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d6cf;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #111111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #bdb7ad;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

.form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
}

.form-message {
  margin: 0 0 20px 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.success-message {
  background: #f3f8f4;
  border: 1px solid #cfe3d3;
  color: #234b2c;
}

.error-message {
  background: #fbf4f4;
  border: 1px solid #e7caca;
  color: #7a2b2b;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.contact-note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

/* =========================
   DISCLOSURES / PRIVACY
========================= */
.disclosure-layout,
.policy-layout {
  max-width: 900px;
}

.disclosure-page-intro,
.policy-page-intro {
  margin-bottom: 26px;
}

.disclosure-page-intro h1,
.policy-page-intro h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0;
}

.disclosure-content,
.policy-content {
  color: #444444;
}

.disclosure-content p:last-child,
.policy-content p:last-child {
  margin-bottom: 0;
}

.disclosure-links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclosure-link {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.disclosure-link:hover {
  border-bottom: 1px solid #000;
}

.policy-content h2 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* =========================
   SUGAR PAGE
========================= */
.sugar-layout {
  max-width: 1120px;
}

.sugar-page-intro {
  max-width: 860px;
  margin-bottom: 36px;
}

.sugar-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  background: #ffffff;
  border: 1px solid #e9e5de;
  border-radius: 22px;
  padding: 28px;
}

.sugar-hero {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
}

.sugar-image-wrap {
  width: 240px;
  flex-shrink: 0;
}

.sugar-image-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  background: #f7f6f3;
}

.sugar-text {
  flex: 1;
  min-width: 0;
}

.sugar-text h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.sugar-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #444444;
}

.sugar-text p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .home-top-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .home-body {
    grid-template-columns: 1fr;
  }

  .about-card,
  .sugar-card,
  .sugar-hero {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .about-image-wrap,
  .sugar-image-wrap {
    width: 220px;
  }

  .about-image-wrap img {
    height: 240px;
  }

  .sugar-image-wrap img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0 12px;
  }

  .branding {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .branding img {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    text-align: left;
  }

  .brand-title {
    font-size: 20px;
    line-height: 1.05;
  }

  .brand-subtitle {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-top: 2px;
  }

  .site-nav ul {
    justify-content: center;
    gap: 18px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero-block h1,
  .about-page-intro h1,
  .contact-page-intro h1,
  .disclosure-page-intro h1,
  .policy-page-intro h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-intro {
    font-size: 16px;
    line-height: 1.75;
  }

  .info-panel,
  .section,
  .contact-info-card,
  .contact-form-card {
    padding: 22px;
    border-radius: 18px;
  }

  .footer-links,
  .footer-bottom {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-links span {
    margin: 0 6px;
  }

  .about-page-intro,
  .sugar-page-intro {
    margin-bottom: 28px;
  }

  .about-text h1,
  .sugar-text h1 {
    font-size: 32px;
  }

  .about-image-wrap,
  .sugar-image-wrap {
    width: 180px;
  }

  .about-image-wrap img,
  .sugar-image-wrap img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .sugar-card {
    padding: 18px;
    border-radius: 18px;
  }

  .sugar-text h1 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .sugar-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding: 0 18px;
  }

  .brand-title {
    font-size: 21px;
  }

  .site-nav ul {
    gap: 14px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .hero-block h1,
  .about-page-intro h1,
  .contact-page-intro h1,
  .disclosure-page-intro h1,
  .policy-page-intro h1 {
    font-size: 30px;
  }

  .section h2,
  .contact-info-card h2,
  .info-panel h2 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}