@charset "UTF-8";

:root {
  --bg: #fbf7f3;
  --surface: #fffdfb;
  --surface-soft: #f5ebe5;
  --rose: #c9787d;
  --rose-dark: #a95f65;
  --rose-light: #ecc6c8;
  --blue: #a7cbdc;
  --cream: #e8d9c6;
  --ink: #332824;
  --muted: #756761;
  --line: rgba(51, 40, 36, .13);
  --shadow: 0 24px 70px rgba(83, 55, 44, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='black'%3E%3Cellipse cx='5.5' cy='11' rx='2.1' ry='2.6'/%3E%3Cellipse cx='9.8' cy='7.2' rx='2.1' ry='2.7'/%3E%3Cellipse cx='14.2' cy='7.2' rx='2.1' ry='2.7'/%3E%3Cellipse cx='18.5' cy='11' rx='2.1' ry='2.6'/%3E%3Cpath d='M12,12.2c-2.9,0-5,2.1-5,4.4,0,1.7,1.4,2.7,3,2.7,.9,0,1.4-.35,2-.35s1.1,.35,2,.35c1.6,0,3-1,3-2.7,0-2.3-2.1-4.4-5-4.4z'/%3E%3C/g%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 243, .9);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(58, 40, 34, .06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  text-decoration: none;
  letter-spacing: -.03em;
}

.brand__logo {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 10px rgba(78, 53, 44, .16);
}

.soc-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(221, 42, 123, .28);
  transition: transform .2s ease, box-shadow .25s ease;
}

.soc-btn:hover,
.soc-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(221, 42, 123, .38); }
.soc-btn svg { width: 21px; height: 21px; }
.soc-btn--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav a,
.instagram-link,
.footer__links a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav a::after,
.instagram-link::after,
.footer__links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform .25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.instagram-link:hover::after,
.instagram-link:focus-visible::after,
.footer__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 20px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--rose-dark);
  border-radius: 999px;
  background: var(--rose-dark);
  box-shadow: 0 10px 24px rgba(169, 95, 101, .18);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); background: #965158; box-shadow: 0 14px 32px rgba(169, 95, 101, .24); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(169, 95, 101, .28); outline-offset: 3px; }
.button--small { min-height: 42px; padding-inline: 21px; font-size: 12px; }
.button--dark { min-height: 46px; border-color: var(--ink); background: var(--ink); box-shadow: none; }
.button--dark:hover, .button--dark:focus-visible { background: #1f1917; box-shadow: 0 10px 20px rgba(51, 40, 36, .16); }
.button--light { border-color: #fff; background: #fff; box-shadow: none; color: var(--ink); }
.button--light:hover, .button--light:focus-visible { background: #f8eeeb; }

.button.js-order::before,
.hero__actions .button::before {
  width: 15px;
  height: 15px;
  margin-right: 9px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
  opacity: .9;
  transform: rotate(-14deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span { display: block; width: 22px; height: 1.5px; margin: 5px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 70px;
}

.hero::before {
  position: absolute;
  top: 12%;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(232, 217, 198, .43);
  filter: blur(2px);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6%;
  width: 46%;
  background: radial-gradient(58% 55% at 32% 42%, rgba(201, 120, 125, .07), transparent 72%);
  content: "";
  pointer-events: none;
}

/* subtle paw-print decorations scattered across section backgrounds */
.paw-deco {
  position: absolute;
  z-index: 0;
  width: 64px;
  height: 64px;
  background: var(--rose-dark);
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  opacity: .12;
  pointer-events: none;
}

.hero .paw-deco--1 { top: 12%; left: 1.5%; width: 60px; height: 60px; transform: rotate(-16deg); opacity: .16; }
.hero .paw-deco--2 { bottom: 8%; left: 4%; width: 80px; height: 80px; transform: rotate(15deg); opacity: .13; }
.hero .paw-deco--3 { top: 4%; left: 39%; width: 48px; height: 48px; transform: rotate(24deg); opacity: .14; }

.pair-section .paw-deco--1 { top: 9%; right: 4%; width: 76px; height: 76px; transform: rotate(16deg); opacity: .10; }
.pair-section .paw-deco--2 { bottom: 11%; left: 3%; width: 52px; height: 52px; transform: rotate(-22deg); opacity: .09; }

.sizes .paw-deco { background: #4e727e; }
.sizes .paw-deco--1 { top: 12%; right: 5%; width: 66px; height: 66px; transform: rotate(12deg); opacity: .11; }
.sizes .paw-deco--2 { bottom: 9%; left: 5%; width: 84px; height: 84px; transform: rotate(-16deg); opacity: .08; }

.order-cta .paw-deco { background: #fff; }
.order-cta .paw-deco--1 { top: -8px; left: 8%; width: 64px; height: 64px; transform: rotate(-16deg); opacity: .20; }
.order-cta .paw-deco--2 { bottom: 10%; right: 7%; width: 88px; height: 88px; transform: rotate(22deg); opacity: .16; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  min-height: min(720px, calc(100vh - 110px));
}

.hero__content { position: relative; z-index: 1; padding-block: 32px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
  transform: rotate(-12deg);
}

.hero h1,
.section h2,
.pair h2,
.sizes h2,
.delivery h2,
.faq-section h2,
.order-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero h1 { max-width: 640px; font-size: clamp(55px, 6.6vw, 96px); }
h1 em, h2 em { color: var(--rose-dark); font-weight: 400; }

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(51, 40, 36, .35);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover { border-color: var(--rose-dark); color: var(--rose-dark); }

.hero__facts {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 50px 0 0;
}

.hero__facts div { display: flex; align-items: center; gap: 10px; padding-right: clamp(15px, 2vw, 28px); }
.hero__facts div + div { padding-left: clamp(15px, 2vw, 28px); border-left: 1px solid var(--line); }
.hero__facts dt { font-family: var(--serif); font-size: 34px; line-height: 1; }
.hero__facts dd { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  border-radius: 140px 24px 140px 24px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.12), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }

.hero__note {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 253, 251, .8);
  box-shadow: 0 16px 36px rgba(78, 53, 44, .13);
  backdrop-filter: blur(10px);
}

.hero__note--top { top: 24px; right: 24px; padding: 11px 17px; border-radius: 999px; color: var(--rose-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero__note--bottom { right: 24px; bottom: 24px; min-width: 220px; padding: 17px 20px; border-radius: 18px; }
.hero__note--bottom b { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.hero__note--bottom span { margin-top: 2px; color: var(--muted); font-size: 11px; }

.hero__note--top { flex-direction: row; align-items: center; gap: 8px; }
.hero__note--top::before {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
}

.hero__paw-seal {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 108px;
  height: 108px;
  padding: 14px;
  text-align: center;
  transform: rotate(-9deg);
  border: 1px solid rgba(169, 95, 101, .2);
  border-radius: 50%;
  background: rgba(255, 250, 247, .82);
  box-shadow: 0 12px 30px rgba(78, 53, 44, .12);
  color: var(--rose-dark);
  backdrop-filter: blur(9px);
}

.hero__paw-seal i {
  width: 30px;
  height: 30px;
  flex: none;
  background: currentColor;
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  transform: rotate(4deg);
}

.hero__paw-seal span {
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.soft-strip { overflow: hidden; border-block: 1px solid var(--line); background: #f3e6e1; }
.soft-strip__track { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3.5vw, 52px); min-width: max-content; min-height: 64px; padding-inline: 32px; color: #6f5954; font-family: var(--serif); font-size: 18px; }
.soft-strip__track i {
  width: 18px;
  height: 18px;
  background: var(--rose);
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  font-size: 0;
  font-style: normal;
  transform: rotate(-8deg);
}

.section { padding: 118px 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2, .pair h2, .sizes h2, .delivery h2, .faq-section h2 { font-size: clamp(43px, 5.3vw, 72px); }
.section-heading > p { max-width: 440px; margin: 0 0 6px; color: var(--muted); }
.section-heading--center { justify-content: center; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

.catalog { background: var(--surface); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(78, 52, 43, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover { transform: translateY(-5px); box-shadow: 0 26px 65px rgba(78, 52, 43, .12); }
.product-card__media { position: relative; aspect-ratio: 1 / .82; overflow: hidden; background: #f5ece8; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; transition: opacity .18s ease, transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__media.is-changing img { opacity: .35; }
.product-card__media--steps img { object-position: 75% center; }

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 253, 251, .86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  backdrop-filter: blur(8px);
}

.product-card__tag::before {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: var(--rose-dark);
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
}

.product-card__tag { display: flex; gap: 2px; }

.product-card__body { padding: 25px 24px 24px; }
.product-card__head { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.product-card__type { margin: 0 0 3px; color: var(--rose-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; letter-spacing: -.03em; }
.price { flex: 0 0 auto; margin: 5px 0 0; font-family: var(--serif); font-size: 23px; white-space: nowrap; }
.product-card__copy { min-height: 66px; margin: 17px 0; color: var(--muted); font-size: 13px; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 7px; }
.product-card__meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 23px; padding-top: 20px; border-top: 1px solid var(--line); }
.swatches { display: flex; gap: 8px; }
.swatch { position: relative; width: 25px; height: 25px; padding: 0; border: 4px solid #fff; border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px rgba(51, 40, 36, .15); cursor: pointer; transition: box-shadow .2s ease, transform .2s ease; }
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { box-shadow: 0 0 0 2px var(--rose-dark); }

.pair-section { position: relative; overflow: hidden; background: #f2e8e2; }
.pair { position: relative; z-index: 1; }
.pair { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(50px, 7vw, 100px); }
.pair__image { position: relative; overflow: hidden; border-radius: 28px 100px 28px 100px; box-shadow: var(--shadow); }
.pair__image img { width: 100%; height: auto; aspect-ratio: 1.15; object-fit: cover; }
.pair__bubble { position: absolute; top: 26px; left: 26px; display: flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px; background: rgba(255, 253, 251, .84); color: var(--rose-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(8px); }
.pair__bubble::before {
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
}
.pair__content > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.check-list li span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: #7d4147; font-size: 11px; }
.pair__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.pair-choice { position: relative; display: flex; flex-direction: column; align-items: start; gap: 2px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .58); text-align: left; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.pair-choice:hover { transform: translateY(-2px); border-color: var(--rose); background: #fff; }
.pair-choice span { color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.pair-choice b { font-family: var(--serif); font-size: 22px; font-weight: 400; }

.features { position: relative; overflow: hidden; background: var(--surface); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { position: relative; min-height: 300px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); }
.feature > * { position: relative; z-index: 1; }
.feature:nth-child(2), .feature:nth-child(4) { transform: translateY(24px); }
.feature__number { position: absolute; top: 22px; right: 24px; color: rgba(51, 40, 36, .28); font-family: var(--serif); font-size: 14px; }
.feature__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 50px 0 38px; border-radius: 50%; background: #efd9d7; color: var(--rose-dark); font-family: var(--serif); font-size: 25px; }
.feature h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.feature p { margin: 0; color: var(--muted); font-size: 13px; }

.sizes { position: relative; overflow: hidden; background: #e5eef0; }
.sizes__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.sizes__grid { position: relative; z-index: 1; }
.sizes__content > p:not(.eyebrow) { max-width: 500px; margin: 27px 0 25px; color: #626c6f; }
.size-table { padding: 12px 34px 28px; border: 1px solid rgba(51, 40, 36, .12); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .64); box-shadow: 0 24px 50px rgba(64, 81, 85, .08); }
.size-row { display: grid; grid-template-columns: .55fr 1.5fr .8fr; align-items: center; gap: 16px; min-height: 94px; border-bottom: 1px solid rgba(51, 40, 36, .12); }
.size-row--head { min-height: 62px; color: #697476; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.size-row strong { font-family: var(--serif); font-size: 42px; font-weight: 400; white-space: nowrap; }
.size-row span { color: #536062; }
.size-row b { font-family: var(--serif); font-size: 22px; font-weight: 400; text-align: right; }
.size-table__note { margin: 24px 0 0; color: #687274; font-size: 12px; }

.gallery-section { background: var(--surface); }
.gallery { display: grid; grid-template-columns: 1.05fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 16px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface-soft); }
.gallery__item--tall { grid-row: 1 / 3; }
.gallery__item--wide { grid-column: 2 / 4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item--tall img { object-position: center 72%; }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption { position: absolute; bottom: 15px; left: 15px; padding: 8px 13px; border-radius: 999px; background: rgba(255, 253, 251, .84); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.gallery__item figcaption { display: flex; align-items: center; gap: 7px; }
.gallery__item figcaption::before {
  width: 14px;
  height: 14px;
  background: var(--rose-dark);
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
  content: "";
}

.delivery { background: #f3e7e2; }
.delivery__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.delivery__intro { position: sticky; top: 130px; align-self: start; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 88px 1fr; gap: 28px; padding: 32px 0; border-top: 1px solid rgba(51, 40, 36, .14); }
.steps-list li:last-child { border-bottom: 1px solid rgba(51, 40, 36, .14); }
.steps-list > li > span { color: var(--rose-dark); font-family: var(--serif); font-size: 38px; }
.steps-list h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.steps-list p { margin: 0; color: var(--muted); }

.faq-section { background: var(--surface); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-family: var(--serif); font-size: 21px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 18px; transition: transform .2s ease, background .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); background: var(--surface-soft); }
.faq details p { max-width: 660px; margin: -7px 50px 24px 0; color: var(--muted); font-size: 14px; }

.order-cta { position: relative; overflow: hidden; padding: 90px 0; background: var(--rose-dark); color: #fff; }
.order-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.order-cta__inner { position: relative; z-index: 1; }
.order-cta .eyebrow { color: #f2d6d6; }
.order-cta h2 { font-size: clamp(42px, 5.5vw, 72px); }
.order-cta h2 em { color: #f4dadd; }
.order-cta__actions { display: flex; flex-direction: column; align-items: start; gap: 18px; min-width: 260px; }
.order-cta__actions a { color: rgba(255,255,255,.86); font-size: 13px; font-weight: 700; text-decoration: none; }

.footer { padding: 42px 0 34px; background: var(--ink); color: rgba(255,255,255,.72); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr auto; align-items: center; gap: 32px; }
.brand--footer { color: #f2d3d5; }
.footer p, .footer small { margin: 0; font-size: 11px; }
.footer__links { display: flex; justify-content: center; gap: 24px; }
.footer__links a { color: rgba(255,255,255,.72); }

.mobile-order { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(38, 29, 26, .7); backdrop-filter: blur(7px); }
.modal__panel { position: relative; width: min(680px, 100%); max-height: calc(100vh - 36px); padding: 38px; overflow-y: auto; transform: translateY(16px) scale(.985); border-radius: 28px; background: var(--surface); box-shadow: 0 35px 100px rgba(0,0,0,.25); transition: transform .25s ease; }
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0 0 3px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); font-size: 26px; cursor: pointer; }
.modal__heading { padding-right: 36px; }
.modal__heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 5vw, 44px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.modal__heading > p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.order-summary { display: flex; align-items: center; gap: 14px; margin: 24px 0; padding: 15px; border: 1px solid #ead4d3; border-radius: 15px; background: #fbefef; }
.order-summary__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #edcecf; color: var(--rose-dark); }
.order-summary__icon {
  flex: 0 0 42px;
  background-color: #edcecf;
}
.order-summary__icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: var(--rose-dark);
  -webkit-mask: var(--paw) center / contain no-repeat;
  mask: var(--paw) center / contain no-repeat;
}
.order-summary div { display: flex; flex-direction: column; }
.order-summary small { color: var(--rose-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.order-summary strong { margin: 1px 0; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.order-summary div span { color: var(--muted); font-size: 11px; }
.order-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--hidden { position: absolute; left: -9999px; }
.form-field label { color: var(--ink); font-size: 11px; font-weight: 750; }
.form-field label span { color: var(--muted); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input, .form-field select { height: 48px; padding: 0 13px; }
.form-field textarea { min-height: 82px; padding: 12px 13px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #b0a39e; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,120,125,.12); outline: none; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #b84a50; }
.field-error { min-height: 0; color: #a6383f; font-size: 10px; }
.consent { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 10px; cursor: pointer; }
.consent input { margin-top: 2px; accent-color: var(--rose-dark); }
.form-status { min-height: 0; color: #a6383f; font-size: 12px; }
.button--submit { justify-content: space-between; width: 100%; margin-top: 2px; }
.button--submit[disabled] { cursor: wait; opacity: .68; transform: none; }
.form-success { padding: 45px 16px 15px; text-align: center; }
.form-success__icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; background: #e5efdf; color: #52713e; font-size: 29px; }
.form-success h3 { margin: 0; font-family: var(--serif); font-size: 35px; font-weight: 400; }
.form-success p { max-width: 400px; margin: 12px auto 24px; color: var(--muted); }

.reveal { transform: translateY(22px); opacity: 0; transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s ease; }
.reveal.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1080px) {
  .nav { gap: 17px; }
  .nav a { font-size: 12px; }
  .header__actions .soc-btn { display: none; }
  .hero__grid { grid-template-columns: .9fr 1.1fr; gap: 34px; }
  .hero__visual { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); margin-inline: auto; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2), .feature:nth-child(4) { transform: none; }
  .feature { min-height: 260px; }
  .feature__icon { margin-top: 30px; }
  .footer__inner { grid-template-columns: 1fr auto; }
  .footer__inner > p { display: none; }
}

@media (max-width: 900px) {
  .header__inner { min-height: 66px; }
  .nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: 10px 24px 22px; transform: translateY(-8px); visibility: hidden; border-bottom: 1px solid var(--line); background: var(--bg); box-shadow: 0 24px 40px rgba(58, 40, 34, .1); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .nav.is-open { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav a::after { display: none; }
  .menu-toggle { display: block; }
  .header__actions .button { display: none; }
  .hero { padding-top: 24px; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 25px 0 0; text-align: center; }
  .hero__content .eyebrow, .hero__actions, .hero__facts { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__visual { min-height: 520px; }
  .section { padding: 90px 0; }
  .pair, .sizes__grid, .delivery__grid, .faq__grid { grid-template-columns: 1fr; }
  .pair__content { max-width: 680px; }
  .delivery__intro { position: static; }
  .gallery { grid-template-rows: 220px 220px; }
  .order-cta__inner { align-items: start; flex-direction: column; gap: 36px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1240px); }
  .brand { font-size: 22px; }
  .brand__logo { width: 38px; height: 38px; }
  .header__actions { gap: 8px; }
  .hero { padding-bottom: 44px; }
  .hero__grid { gap: 28px; }
  .hero h1 { font-size: clamp(48px, 15vw, 69px); }
  .hero__lead { margin-top: 21px; font-size: 16px; }
  .hero__actions { flex-direction: column; gap: 18px; margin-top: 27px; }
  .hero__facts { margin-top: 38px; }
  .hero__facts dt { font-size: 27px; }
  .hero__facts dd { font-size: 8px; }
  .hero__facts div { gap: 6px; padding-right: 10px; }
  .hero__facts div + div { padding-left: 10px; }
  .hero__visual { min-height: 410px; border-radius: 68px 16px 68px 16px; }
  .hero__visual img { object-position: 60% center; }
  .hero__note--top { top: 14px; right: 14px; }
  .hero__note--bottom { right: 14px; bottom: 14px; min-width: 168px; padding: 12px 15px; }
  .hero__note--bottom b { font-size: 20px; }
  .hero__paw-seal { bottom: 14px; left: 14px; width: 86px; height: 86px; padding: 11px; gap: 4px; }
  .hero__paw-seal i { width: 23px; height: 23px; }
  .hero__paw-seal span { font-size: 7px; }
  .soft-strip__track { justify-content: start; min-height: 54px; font-size: 15px; animation: strip-scroll 18s linear infinite; }
  @keyframes strip-scroll { to { transform: translateX(-35%); } }
  .section { padding: 72px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2, .pair h2, .sizes h2, .delivery h2, .faq-section h2 { font-size: 45px; }
  .section-heading > p { margin-top: 18px; font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .product-card__media { aspect-ratio: 1 / .8; }
  .product-card__body { padding: 20px 18px; }
  .product-card__head { align-items: end; }
  .product-card h3 { font-size: 25px; }
  .price { font-size: 20px; }
  .product-card__copy { min-height: auto; }
  .product-card__footer { align-items: stretch; flex-direction: column; }
  .swatches { margin-bottom: 4px; }
  .product-card__footer .button { width: 100%; }
  .pair { gap: 44px; }
  .pair__image { border-radius: 18px 55px 18px 55px; }
  .pair__image img { aspect-ratio: 1.2; }
  .pair__content > p:not(.eyebrow) { font-size: 15px; }
  .pair__prices { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .feature { min-height: 230px; }
  .feature__icon { margin: 18px 0 28px; }
  .sizes__grid { gap: 38px; }
  .size-table { padding: 8px 18px 22px; border-radius: 22px; }
  .size-row { grid-template-columns: .5fr 1.3fr .8fr; min-height: 82px; gap: 10px; font-size: 12px; }
  .size-row strong { font-size: 26px; }
  .size-row b { font-size: 17px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 170px 190px; gap: 10px; }
  .gallery__item--tall { grid-column: 1 / 3; grid-row: auto; }
  .gallery__item--wide { grid-column: 1 / 3; }
  .steps-list li { grid-template-columns: 55px 1fr; gap: 15px; padding: 24px 0; }
  .steps-list > li > span { font-size: 29px; }
  .steps-list h3 { font-size: 24px; }
  .steps-list p { font-size: 13px; }
  .faq__grid { gap: 38px; }
  .faq summary { font-size: 18px; }
  .order-cta { padding: 68px 0; }
  .order-cta h2 { font-size: 44px; }
  .order-cta__actions, .order-cta__actions .button { width: 100%; }
  .footer { padding-bottom: 100px; }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__links { flex-wrap: wrap; }
  .mobile-order { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 120; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 20px; border: 0; border-radius: 18px; background: var(--ink); box-shadow: 0 16px 40px rgba(33, 24, 21, .28); color: #fff; font-size: 12px; font-weight: 750; cursor: pointer; }
  .mobile-order b { font-family: var(--serif); font-size: 17px; font-weight: 400; }
  .modal { align-items: end; padding: 0; }
  .modal__panel { width: 100%; max-height: 94vh; padding: 30px 18px 22px; border-radius: 24px 24px 0 0; }
  .modal__heading { padding-right: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { transform: none; opacity: 1; }
}
