/* ===========================
   Bowl D'Amour — Lyka-inspired
   Poppins, mobile-first
   =========================== */

:root {
  --brown: #5C3D2E;
  --brown-dark: #3E2518;
  --brown-light: #7A5A4A;
  --beige: #F5EDE3;
  --cream: #FFF8F0;
  --orange: #9A4A2B;
  --orange-hover: #7D3B22;
  --gold: #D9A05A;
  --text: #3A2A1E;
  --text-light: #6B5B50;
  --white: #FFFFFF;
  --shadow: 0 2px 16px rgba(92, 61, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(92, 61, 46, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; font-family: 'Fraunces', serif; color: var(--orange); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--beige { background: var(--beige); }
.section--cream { background: var(--cream); }
.section--brown {
  background: var(--brown);
  color: var(--cream);
}

.section__title {
  font-size: 1.8rem;
  color: var(--brown);
  text-align: center;
  margin-bottom: 12px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  line-height: 1;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154, 74, 43, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.btn--outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--orange);
  font-weight: 600;
  padding: 10px 0;
}

.btn--ghost:hover {
  color: var(--orange-hover);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--full { width: 100%; }

/* ===========================
   Top Banner
   =========================== */

.top-banner {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-banner a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===========================
   Header / Nav
   =========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav__menu.active { right: 0; }

.nav__link {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  transition: color var(--transition);
}

.nav__link:hover { color: var(--orange); }

.nav__cta {
  display: none;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
  white-space: nowrap;
}

.nav__cta:hover { background: var(--orange-hover); }

/* ===========================
   Hero
   =========================== */

.hero {
  padding: 48px 0 40px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--beige) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__text h1 {
  font-size: 2.2rem;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
}

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

.hero__placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: var(--beige);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brown-light);
  border: 2px dashed rgba(92, 61, 46, 0.2);
}

.hero__placeholder span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.hero__img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Benefit pills */
.hero__pills {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero__pills::-webkit-scrollbar { display: none; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid rgba(92, 61, 46, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.pill:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.pill:hover svg { stroke: var(--white); }

.pill svg,
.pill__icon svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  transition: stroke var(--transition);
}

.pill__icon {
  display: inline-flex;
  line-height: 0;
}

/* ===========================
   Split sections (image + text)
   =========================== */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.split__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--beige);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  font-size: 0.9rem;
  border: 2px dashed rgba(92, 61, 46, 0.15);
}

.split__placeholder--tall {
  aspect-ratio: 3/4;
}

.split__img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.split__text h2 {
  font-size: 1.8rem;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 28px;
}

.split__desc {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(154, 74, 43, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.feature-item strong {
  display: block;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   Stats bar
   =========================== */

.stats {
  padding: 40px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.7);
  margin-top: 4px;
}

/* ===========================
   Social proof
   =========================== */

.proof__content {
  text-align: center;
}

.proof__number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brown), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof__label {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===========================
   Reviews
   =========================== */

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-card__photo {
  padding: 20px 20px 0;
}

.review-card__placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--beige);
  border-radius: 12px;
}

.review-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
}

.review-card__body {
  padding: 20px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card__quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__meta strong {
  display: block;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.review-card__meta span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.reviews__more {
  text-align: center;
  margin-top: 32px;
}

/* ===========================
   Easy section
   =========================== */

.easy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.easy__text h2 {
  font-size: 1.8rem;
  color: var(--brown);
  line-height: 1.2;
}

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

.easy__step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.easy__step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.easy__step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.easy__step-header strong {
  font-weight: 600;
  color: var(--brown);
}

.easy__step p {
  color: var(--text-light);
  font-size: 0.9rem;
  padding-left: 40px;
}

/* ===========================
   FAQ
   =========================== */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.faq__header h2 {
  font-size: 2rem;
  color: var(--brown);
}

.faq__header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq__item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover { color: var(--orange); }

.faq__item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   Page Hero (subpages)
   =========================== */

.page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--beige) 100%);
  text-align: center;
}

.page-hero__content h1 {
  font-size: 2.2rem;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero__content p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.form__heading {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
}

.form__heading--mt {
  margin-top: 32px;
}

@media (min-width: 960px) {
  .page-hero__content h1 { font-size: 3rem; }
}

/* ===========================
   Form
   =========================== */

.dog-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #D9CFC6;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input::placeholder { color: #B0A69C; }

.form__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(154, 74, 43, 0.12);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C3D2E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 60px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form__note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.82rem;
  margin-top: 16px;
}

/* Inline inputs (years/months) */
.form__inline {
  display: flex;
  gap: 12px;
}

.form__inline .form__input {
  flex: 1;
}

/* Radio buttons */
.form__radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 20px;
  border: 1.5px solid #D9CFC6;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  background: var(--cream);
}

.form__radio:hover {
  border-color: var(--orange);
}

.form__radio input {
  display: none;
}

.form__radio:has(input:checked) {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Checkboxes */
.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 18px;
  border: 1.5px solid #D9CFC6;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  background: var(--cream);
}

.form__checkbox:hover {
  border-color: var(--orange);
}

.form__checkbox input {
  display: none;
}

.form__checkbox:has(input:checked) {
  background: rgba(154, 74, 43, 0.1);
  border-color: var(--orange);
  color: var(--brown);
}

/* Conditional textarea */
.form__conditional {
  margin-top: 12px;
}

/* Breed autocomplete */
.breed-select {
  position: relative;
}

.breed-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid #D9CFC6;
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 200px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  box-shadow: var(--shadow);
}

.breed-select__list.active {
  display: block;
}

.breed-select__list li {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.breed-select__list li:hover,
.breed-select__list li.highlighted {
  background: var(--beige);
  color: var(--brown);
}

/* Date picker */
.datepicker {
  position: relative;
}

.datepicker__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  background: var(--cream);
}

.datepicker__trigger.has-value .datepicker__value {
  color: var(--text);
}

.datepicker__value {
  color: #B0A69C;
  font-size: 0.95rem;
}

.datepicker__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brown-light);
}

.datepicker__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  min-width: 300px;
  border: 1.5px solid rgba(92, 61, 46, 0.1);
}

.datepicker__dropdown.active {
  display: block;
}

.datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.datepicker__selectors {
  display: flex;
  gap: 6px;
}

.datepicker__select {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 500;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  appearance: auto;
}

.datepicker__select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.datepicker__nav {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: all var(--transition);
}

.datepicker__nav:hover {
  background: var(--beige);
  color: var(--orange);
}

.datepicker__nav svg {
  width: 18px;
  height: 18px;
}

.datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.datepicker__weekdays span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.datepicker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.datepicker__day {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.15s ease;
}

.datepicker__day:hover {
  background: var(--beige);
  color: var(--brown);
}

.datepicker__day--today {
  font-weight: 700;
  color: var(--orange);
}

.datepicker__day--selected {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.datepicker__day--selected:hover {
  background: var(--orange-hover);
  color: var(--white);
}

.datepicker__day--outside {
  color: #C8BFB6;
}

/* Consent checkbox */
.form__consent {
  margin-bottom: 24px;
}

.form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5;
}

.form__consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.body-score {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.body-score__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px 12px;
  border: 2px solid var(--beige);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.body-score__card:hover {
  border-color: var(--brown-light);
  background: var(--beige);
}

.body-score__card:has(input:checked) {
  border-color: var(--orange);
  background: rgba(154, 74, 43, 0.06);
  box-shadow: 0 0 0 3px rgba(154, 74, 43, 0.12);
}

.body-score__card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.body-score__visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 8px 0;
}

.body-score__img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.body-score__card:has(input:checked) .body-score__img {
  opacity: 1;
}

.body-score__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  transition: var(--transition);
}

.body-score__card:has(input:checked) .body-score__label {
  color: var(--orange);
}

@media (max-width: 640px) {
  .body-score {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form__input.error {
  border-color: #D94444;
  box-shadow: 0 0 0 3px rgba(217, 68, 68, 0.1);
}

.form__error {
  color: #D94444;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ===========================
   Contact
   =========================== */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__item svg,
.contact__item > [data-lucide] {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
}

.contact__item strong {
  display: block;
  color: var(--brown);
  font-size: 0.9rem;
}

.contact__item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--brown);
  transition: all var(--transition);
}

.contact__social:hover {
  background: var(--orange);
  color: var(--white);
}

.contact__form {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===========================
   Content Pages
   =========================== */

.page-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--brown);
}

.content-page {
  max-width: 780px;
  margin: 0 auto;
}

.content-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.content-page h3 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-top: 28px;
  margin-bottom: 8px;
}

.content-page p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.8;
}

.content-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-page ul li {
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.7;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

.content-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--beige);
}

.content-block:last-of-type {
  border-bottom: none;
}

.content-block--highlight {
  background: var(--beige);
  padding: 32px;
  border-radius: var(--radius);
  border-bottom: none;
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-intro__photo {
  flex-shrink: 0;
}

.about-intro__photo img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .about-intro {
    flex-direction: row;
    gap: 40px;
  }

  .about-intro__photo {
    width: 280px;
    min-width: 280px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .about-intro__photo img {
    width: 100%;
    height: 380px;
    max-height: none;
    object-position: center 25%;
  }

  .about-intro__text {
    flex: 1;
  }

  .content-page:has(.about-intro) {
    max-width: 960px;
  }
}

@media (min-width: 960px) {
  .about-intro__photo {
    width: 320px;
    min-width: 320px;
  }

  .about-intro__photo img {
    height: 440px;
  }
}

.page-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  margin-bottom: 36px;
}

.content-cta {
  text-align: center;
  padding: 32px 0 0;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.ingredient-card h3 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 12px;
}

.ingredient-list {
  font-size: 0.9rem;
  color: var(--text-light);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
}

.benefit-item h3 {
  margin-top: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.value-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.value-card h3 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.value-card p {
  margin-bottom: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.step-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  color: var(--brown);
}

.step-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.transition-timeline {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.transition-week {
  flex: 1;
  padding: 16px 20px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.price-tag {
  font-size: 1.1rem;
  margin-top: 12px;
}

@media (min-width: 640px) {
  .ingredient-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 3rem;
  }
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: var(--brown-dark);
  color: var(--beige);
  padding: 60px 0 0;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer__logo {
  display: block;
  margin-bottom: 12px;
}

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

.footer__brand p {
  color: rgba(245, 237, 227, 0.6);
  font-size: 0.85rem;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: var(--orange);
}

.footer__col h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: var(--cream);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a {
  color: rgba(245, 237, 227, 0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 20px;
  text-align: center;
}

.footer__bottom p {
  color: rgba(245, 237, 227, 0.4);
  font-size: 0.8rem;
}

/* ===========================
   Responsive — Tablet (640px+)
   =========================== */

@media (min-width: 640px) {
  .hero__text h1 { font-size: 2.6rem; }

  .split { grid-template-columns: 1fr 1fr; }
  .split--img-right .split__image { order: 2; }
  .split--img-right .split__text { order: 1; }

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

  .reviews__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer__content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

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

  .faq__grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

/* ===========================
   Responsive — Desktop (960px+)
   =========================== */

@media (min-width: 960px) {
  .section { padding: 100px 0; }
  .section__title { font-size: 2rem; }

  .hero { padding: 64px 0 48px; }
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__text h1 { font-size: 3.4rem; }

  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    background: transparent;
  }

  .nav__link {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .nav__cta {
    display: inline-flex;
  }

  .split__text h2 { font-size: 2.4rem; }

  .proof__number { font-size: 4.5rem; }

  .dog-form { padding: 48px 44px; }

  .faq__header h2 { font-size: 2.4rem; }
}
