@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #e8dcc3;
  --tan: #d1bb97;
  --tan-mid: #bc9c7d;
  --brown: #8f6c4c;
  --brown-dark: #5b3d1a;
  --red: #ff4a4a;
  --white: #ffffff;
  --ink: #2c2015;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(91, 61, 26, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.section-sub {
  max-width: 640px;
  color: #6b5a45;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--brown); }

.btn-outline {
  background: transparent;
  border-color: var(--brown-dark);
  color: var(--brown-dark);
}
.btn-outline:hover { transform: translateY(-2px); background: var(--brown-dark); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--tan);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.logo-img {
  height: 34px;
  width: auto;
}
.logo-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brown-dark);
  padding-left: 3px;
}

.nav-list {
  display: flex;
  gap: 34px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.nav-list a:hover { border-color: var(--brown-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  padding: 103px 0 130px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.5fr;
  gap: 48px;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 20px;
}

.hero p {
  font-size: 17px;
  color: #6b5a45;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
}

.hero-feeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-feed-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 414px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 37px;
  box-shadow: var(--shadow);
}
.hero-feed-head {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-feed-tiles {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
  min-height: 0;
}
.hero-feed-tile {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.hero-feed-tile .ph-image {
  min-height: 0;
  height: 100%;
  border-radius: 14px;
}
.hero-feed-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,12,4,0.78) 100%);
  opacity: 0;
  transition: opacity .2s ease;
}
.hero-feed-tile:hover .hero-feed-tile-overlay { opacity: 1; }
.hero-feed-tile-overlay span {
  color: var(--white);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 600;
}
.hero-feed-link {
  display: inline-block;
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brown-dark);
}

/* ---------- Placeholder image blocks ---------- */
.ph-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--tan) 0%, var(--tan-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.ph-image .paw {
  position: relative;
  width: 34%;
  max-width: 84px;
  opacity: 0.85;
  color: var(--white);
}
.ph-image .ph-caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.ph-image[data-tone="1"] { background: linear-gradient(135deg, #bc9c7d 0%, #8f6c4c 100%); }
.ph-image[data-tone="2"] { background: linear-gradient(135deg, #8f6c4c 0%, #5b3d1a 100%); }
.ph-image[data-tone="3"] { background: linear-gradient(135deg, #d1bb97 0%, #bc9c7d 100%); }
.ph-image[data-tone="4"] { background: linear-gradient(135deg, #e8dcc3 0%, #bc9c7d 100%); }
.ph-image[data-tone="5"] { background: linear-gradient(135deg, #5b3d1a 0%, #2c2015 100%); }

/* ---------- Catalog ---------- */
.catalog { padding: 90px 0; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease;
}
.catalog-card:hover { transform: translateY(-6px); }

.catalog-card .ph-image { border-radius: 0; aspect-ratio: 4/3; }

.catalog-card-body { padding: 20px 22px 24px; }
.catalog-card-body h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.catalog-card-body p { margin: 0; font-size: 14px; color: #6b5a45; line-height: 1.55; }

/* ---------- Photo band ---------- */
.band {
  height: 340px;
}
.band-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Pain points ---------- */
.pain-section { padding: 80px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.pain-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #4a3a26;
}
.pain-card.is-solution {
  background: var(--brown-dark);
  color: var(--cream);
  font-weight: 700;
}

/* ---------- Process / brand story ---------- */
.process {
  background: var(--cream);
  padding: 90px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brown);
  font-weight: 700;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.step-card p { font-size: 14px; color: #6b5a45; line-height: 1.55; margin: 0; }

.process-closing {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(91, 61, 26, 0.15);
  font-size: 15px;
  color: #4a3a26;
  max-width: 600px;
}

/* ---------- Size guide ---------- */
.sizes { padding: 90px 0; background: var(--cream); }
.size-guide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.size-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.size-diagram {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  line-height: 0;
}
.size-diagram img { width: 100%; height: auto; display: block; }
.size-measures {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.size-measure {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.size-measure-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-measure h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.size-measure p { font-size: 14px; color: #6b5a45; line-height: 1.5; margin: 0; }

.size-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.size-table { width: 100%; min-width: 420px; border-collapse: collapse; }
.size-table th, .size-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
}
.size-table thead th {
  background: var(--brown-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.size-table tbody tr:nth-child(even) { background: var(--cream); }
.size-table-label { font-weight: 700; color: var(--brown-dark); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.review-card-photo { aspect-ratio: 4/5; }
.review-card-photo .ph-image { border-radius: 0; min-height: 0; height: 100%; }
.review-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.review-card-body { padding: 24px 26px 28px; }
.review-card-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-card-stars svg { width: 17px; height: 17px; }
.review-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3a26;
  margin: 0 0 14px;
}
.review-card-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 56px 0 28px;
}
.footer-top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232,220,195,0.18);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 12px;
}
.footer-logo-img { height: 30px; }
.footer-logo-sub { color: rgba(232,220,195,0.7); padding-left: 3px; }
.footer-tagline { font-size: 13px; color: #c8b79a; max-width: 260px; line-height: 1.5; }
.footer-contact { font-size: 13px; color: #c8b79a; margin-top: 8px; }

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232,220,195,0.18);
}
.footer-social-title { font-size: 19px; font-weight: 700; margin: 0 0 6px; }
.footer-social-text { font-size: 14px; color: #c8b79a; max-width: 340px; margin: 0; }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232,220,195,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.social-icons a:hover { background: var(--tan); border-color: var(--tan); }
.social-icons svg { width: 17px; height: 17px; fill: var(--cream); }
.social-icon-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.footer-legal {
  padding-top: 22px;
  font-size: 12.5px;
  line-height: 1.8;
  color: #b3a084;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,12,4,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  overflow: hidden;
}
.lightbox-box .ph-image { aspect-ratio: 4/3; border-radius: 0; }
.lightbox-body { padding: 22px 24px 26px; }
.lightbox-body h3 { margin: 0 0 8px; }
.lightbox-body p { margin: 0; color: #6b5a45; font-size: 14px; line-height: 1.6; }
.lightbox-close {
  margin-top: 18px;
  background: none;
  border: none;
  font-weight: 700;
  color: var(--brown-dark);
  cursor: pointer;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .size-guide { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .band { height: 220px; }
  .nav-list { display: none; }
  .burger { display: flex; }
}

@media (max-width: 900px) {
  .site-header.menu-open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tan);
    padding: 18px 24px 26px;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .hero-feeds { grid-template-columns: 1fr; }
}
