:root {
  --crimson: #8f0611;
  --crimson-dark: #68040b;
  --ink: #101418;
  --muted: #5c6268;
  --line: #e7e1da;
  --paper: #fffdf9;
  --soft: #f7f4ef;
  --shadow: 0 10px 30px rgba(32, 24, 18, 0.1);
  --content-width: 1440px;
  --content-gutter: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.top-strip {
  min-height: 39px;
  padding: 8px clamp(20px, 5vw, 54px);
  background: linear-gradient(90deg, #78050d, #a00916 55%, #75050d);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.top-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.top-item:first-child {
  justify-content: flex-start;
}

.top-item:last-child {
  justify-content: flex-end;
}

.badge-icon {
  width: 22px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px 4px 8px 8px;
  display: inline-grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 11px;
  line-height: 1;
}

.line-icon {
  position: relative;
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
  display: inline-block;
}

.line-icon.truck {
  border: 2px solid #fff;
  border-radius: 2px;
}

.line-icon.truck::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -8px;
  top: 4px;
  border: 2px solid #fff;
  border-left: 0;
}

.line-icon.truck::after,
.line-icon.return::after {
  content: "";
  position: absolute;
  inset: auto 1px -5px auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -14px 0 0 #fff;
}

.line-icon.return {
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
}

.line-icon.return::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 1px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(-45deg);
}

.site-header {
  min-height: 83px;
  padding: 0 clamp(20px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
}

.brand span {
  color: var(--crimson-dark);
  font: 700 40px/0.9 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand small {
  margin-top: 10px;
  color: #202020;
  font-size: 13px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a:nth-child(2)::after,
.main-nav a:nth-child(3)::after,
.main-nav a:nth-child(4)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 2px 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.main-nav .sale {
  color: var(--crimson);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-tools button,
.header-tools a,
.nav-toggle {
  border: 0;
  background: transparent;
  color: #17191b;
  cursor: pointer;
}

.header-tools button,
.header-tools a {
  width: 25px;
  height: 32px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.header-tools svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  top: -3px;
  right: -10px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--crimson);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #161616;
}

main {
  overflow: hidden;
}

.hero {
  min-height: clamp(430px, 30vw, 560px);
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
  background: #fff;
}

.hero-copy {
  min-height: clamp(430px, 30vw, 560px);
  padding: clamp(78px, 7vw, 118px) 28px clamp(62px, 5.5vw, 94px) clamp(40px, 6vw, 86px);
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, #fff 76%, rgba(255,255,255,0.84) 88%, rgba(255,255,255,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero h1 {
  margin: 0;
  color: #090b0d;
  font: 700 clamp(50px, 5.2vw, 76px)/1.04 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 span,
.rail-feature h2,
.story-copy h2,
.testimonials h2,
.site-footer h2 {
  color: var(--crimson-dark);
}

.rule,
.accent-line {
  width: 39px;
  height: 2px;
  background: var(--crimson);
}

.rule {
  margin: 28px 0 24px;
}

.hero p {
  margin: 0;
  color: #171c21;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.story-copy a,
.newsletter button {
  height: 44px;
  padding: 0 24px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.primary-button,
.story-copy a,
.newsletter button {
  color: #fff;
  background: var(--crimson);
  border: 1px solid var(--crimson);
}

.secondary-button {
  background: #fff;
  border: 1.5px solid #222;
}

.hero .primary-button,
.hero .secondary-button {
  height: 56px;
  padding: 0 34px;
  font-size: 14px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 39%;
  z-index: 1;
}

.hero-photo::before {
  content: "";
  position: absolute;
  left: -300px;
  top: 0;
  bottom: 0;
  width: 560px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 28%, rgba(255,255,255,0.74) 54%, rgba(255,255,255,0.28) 78%, rgba(255,255,255,0) 100%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: -230px;
  top: 0;
  bottom: 0;
  width: 390px;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 62%, transparent 100%);
  opacity: 0.72;
}

.hero-photo .crop {
  height: 100%;
  min-height: clamp(430px, 30vw, 560px);
  border-radius: 0;
}

.crop,
.about-crop,
.product-crop,
.college-crop,
.contact-crop,
.detail-crop {
  width: 100%;
  overflow: hidden;
  background-image: var(--shot);
  background-repeat: no-repeat;
  background-color: #f4f1ec;
  background-size: var(--bg-size, cover);
  background-position: var(--bg-position, center);
}

.category-band {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 16px auto;
  padding: 12px 18px 14px;
  background: rgba(248, 246, 242, 0.86);
  border-radius: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  display: grid;
  justify-items: center;
  grid-template-rows: 96px auto;
  align-items: start;
  gap: 8px;
  padding: 0 2px;
  min-width: 0;
}

.category-card .crop {
  width: 96px;
  max-width: 100%;
  aspect-ratio: 1.2;
  border-radius: 50%;
}

.category-card .category-icon {
  width: 104px;
  height: 96px;
  max-width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
}

.category-card .category-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(1.04);
}

.category-card span {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.product-section {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.rail {
  display: grid;
  grid-template-columns: minmax(310px, 360px) minmax(0, 1fr);
  gap: 18px;
  min-height: 188px;
  position: relative;
}

.rail-feature {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  padding: 29px 22px;
  background: #e8e2dc;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  filter: saturate(1.02) contrast(1.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.rail-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76) 48%, rgba(255,255,255,0.34));
  z-index: 1;
}

.rail-feature > *:not(.rail-bg) {
  position: relative;
  z-index: 2;
}

.rail-feature h2 {
  margin: 0;
  font: 700 30px/1.1 Georgia, "Times New Roman", serif;
  max-width: 270px;
}

.rail-feature .rule {
  margin: 14px 0 20px;
  width: 28px;
}

.rail-feature p {
  margin: 0 0 20px;
  max-width: 180px;
  color: #202428;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.rail-feature a {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cards-wrap {
  position: relative;
  min-width: 0;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  padding: 10px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(37, 27, 16, 0.08);
  position: relative;
}

.product-card .crop {
  width: min(100%, 156px);
  aspect-ratio: 1.2;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fbfaf8;
  filter: contrast(1.08) saturate(1.06);
  image-rendering: auto;
}

.product-image-frame {
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ivypier-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-image-link,
.product-card a,
.listing-card h3 a,
.related-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.heart {
  display: none;
}

.heart svg {
  width: 100%;
  height: 100%;
  fill: rgba(255,255,255,0.56);
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-card h3 {
  min-height: 39px;
  margin: 9px 0 2px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ff6a00;
  font-size: 13px;
  line-height: 1;
}

.rating span:last-child {
  color: #222;
  font-size: 12px;
  margin-left: 3px;
}

.price {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 900;
}

.rail-next,
.testimonial-nav {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 22, 22, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.rail-next::before,
.testimonial-nav::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #1b1b1b;
  border-bottom: 2px solid #1b1b1b;
  transform: rotate(-45deg);
}

.story-banner {
  width: min(100% - var(--content-gutter), var(--content-width));
  min-height: clamp(170px, 12vw, 220px);
  margin: 18px auto 16px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
  background: #221810 url("assets/footer-ad.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.story-banner .crop {
  display: none;
}

.story-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 12, 6, 0.95), rgba(21, 12, 6, 0.72) 24%, rgba(21, 12, 6, 0.18) 55%, rgba(21, 12, 6, 0.02) 82%);
}

.story-copy {
  position: relative;
  z-index: 1;
  min-height: clamp(170px, 12vw, 220px);
  padding: clamp(22px, 2.6vw, 34px) clamp(30px, 4vw, 60px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.story-copy h2 {
  margin: 0;
  color: #fff;
  font: 700 clamp(30px, 3vw, 44px)/1.08 Georgia, "Times New Roman", serif;
}

.story-copy p {
  margin: 12px 0 16px;
  max-width: 520px;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.48;
}

.story-copy a,
.story-cta {
  height: 38px;
  padding: 0 24px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  background: var(--crimson);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.testimonials {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto 28px;
  position: relative;
  text-align: center;
}

.testimonials h2 {
  margin: 0;
  color: #161616;
  font: 700 24px/1.3 Georgia, "Times New Roman", serif;
}

.testimonials .accent-line {
  margin: 8px auto 14px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}

.testimonial-card {
  min-height: 105px;
  padding: 17px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 14px;
  box-shadow: 0 7px 18px rgba(28, 20, 10, 0.06);
}

.stars {
  color: var(--crimson);
  font-size: 15px;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin: 8px 0 11px;
  font-size: 12px;
  line-height: 1.45;
}

.testimonial-card strong {
  font-size: 12px;
}

.testimonial-card .crop {
  align-self: end;
  aspect-ratio: 1.1;
  border-radius: 4px;
}

.testimonial-product-image {
  align-self: end;
  width: 86px;
  height: 78px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.dots {
  margin-top: 13px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d4d1;
}

.dots .active {
  background: var(--crimson);
}

.service-row {
  border-top: 1px solid rgba(34,34,34,0.06);
  background: #fff;
  padding: 22px clamp(20px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-row article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
}

.service-row h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 900;
}

.service-row p {
  margin: 0;
  color: #45494d;
  font-size: 12px;
  line-height: 1.45;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  position: relative;
  background: transparent center / contain no-repeat;
}

.service-icon.delivery {
  background-image: url("icons/free-shipping.png");
}

.service-icon.shield {
  background-image: url("icons/secure-checkout.png");
}

.service-icon.loop {
  background-image: url("icons/easy-returns.png");
}

.service-icon.cap {
  background-image: url("icons/student-support.png");
}

.service-icon.delivery::before,
.service-icon.delivery::after,
.service-icon.shield::after,
.service-icon.loop::before,
.service-icon.cap::before,
.service-icon.cap::after {
  content: none;
}

.site-footer {
  min-height: 360px;
  padding: 64px clamp(30px, 6vw, 92px) 58px;
  background: linear-gradient(90deg, #78050d, #a00815 55%, #76050d);
  color: #fff;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr) 1.65fr;
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  color: #fff;
  font: 700 46px/1 Georgia, "Times New Roman", serif;
}

.site-footer h3 {
  margin-bottom: 22px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-brand p,
.newsletter p {
  margin-top: 13px;
  font-size: 15px;
  line-height: 1.5;
}

.socials {
  margin: 32px 0 32px;
  display: flex;
  gap: 22px;
  font-weight: 900;
  font-size: 22px;
}

.footer-brand small {
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 14px;
}

.newsletter h3,
.newsletter p,
.payments {
  grid-column: 1 / -1;
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter input {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 3px;
  padding: 0 16px;
  font-size: 15px;
}

.newsletter button {
  height: 52px;
  padding: 0 30px;
  border-color: #4a0207;
  background: #5f040a;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.payments span {
  min-width: 50px;
  height: 24px;
  padding: 0 5px;
  border-radius: 3px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: #0a3c8f;
  font-size: 11px;
  font-weight: 900;
}

.about-page {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  padding: 32px 0 30px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 34px;
  color: #202428;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 1px 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.35fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-copy h1,
.about-story-copy h2,
.about-team-intro h2,
.commitment-strip h2 {
  margin: 0;
  color: #151719;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.about-copy h1 {
  font-size: clamp(28px, 2.55vw, 36px);
  line-height: 1.16;
}

.about-copy > p:not(.eyebrow),
.about-story-copy p,
.about-team-intro p,
.commitment-strip p {
  color: #15191d;
  font-size: 12px;
  line-height: 1.58;
  font-weight: 500;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 20px;
  max-width: 440px;
}

.about-proof {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-proof article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.about-proof span {
  width: 54px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--crimson);
  font: 900 25px/1 Georgia, "Times New Roman", serif;
}

.about-proof article:nth-child(1) span,
.about-proof article:nth-child(4) span {
  border: 2px solid var(--crimson);
  border-radius: 4px 4px 12px 12px;
  font-size: 16px;
}

.about-proof strong {
  font-size: 11px;
  line-height: 1.45;
}

.about-hero-image {
  min-height: clamp(420px, 40vw, 610px);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

img.about-hero-image {
  height: clamp(420px, 40vw, 610px);
}

.about-service-band {
  margin: 46px 0 28px;
  padding: 24px 38px;
  border-radius: 5px;
  background: rgba(248, 246, 242, 0.92);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.about-service-band article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
}

.about-service-band h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 900;
}

.about-service-band p {
  margin: 0;
  color: #3f4449;
  font-size: 12px;
  line-height: 1.5;
}

.service-icon.lock {
  border: 2px solid #111;
  border-radius: 4px;
  height: 34px;
  margin-top: 8px;
}

.service-icon.lock::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -12px;
  width: 18px;
  height: 20px;
  border: 2px solid #111;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}

.service-icon.lock::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 6px;
  height: 10px;
  border-radius: 5px;
  background: #111;
}

.service-icon.tag {
  border: 2px solid #111;
  border-radius: 4px 4px 4px 10px;
  transform: rotate(-38deg) scale(0.75);
}

.service-icon.tag::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid #111;
  border-radius: 50%;
}

.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  margin: 26px 0 46px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-gallery .about-crop {
  min-height: 184px;
  border-radius: 5px;
}

.about-gallery .about-image {
  min-height: 184px;
  aspect-ratio: 221 / 132;
  border-radius: 5px;
}

.about-story-copy h2,
.about-team-intro h2 {
  font-size: clamp(23px, 1.95vw, 30px);
  line-height: 1.16;
}

.about-story-copy p,
.about-team-intro p {
  margin: 0 0 15px;
  max-width: 620px;
}

.about-team {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 46px;
  align-items: start;
  margin: 20px 0 30px;
}

.about-team-intro .primary-button {
  margin-top: 12px;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-cards article {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(34, 24, 18, 0.06);
}

.team-cards .about-crop {
  aspect-ratio: 1 / 1.04;
}

.team-cards .about-image {
  aspect-ratio: 1 / 1.04;
}

.team-cards h3 {
  margin: 16px 10px 6px;
  font-size: 11px;
  font-weight: 900;
}

.team-cards p {
  margin: 0 10px 13px;
  color: #3f4449;
  font-size: 10px;
  line-height: 1.45;
}

.team-cards span {
  display: inline-block;
  margin-bottom: 17px;
  font-size: 11px;
  font-weight: 900;
}

.commitment-strip {
  margin: 24px 0 0;
  padding: 28px 42px;
  border-radius: 5px;
  background: rgba(248, 246, 242, 0.92);
  display: grid;
  grid-template-columns: 180px minmax(260px, 1.4fr) repeat(3, minmax(130px, 1fr));
  gap: 30px;
  align-items: center;
}

.commitment-mark {
  color: var(--crimson);
  text-align: center;
  text-transform: uppercase;
}

.commitment-mark strong {
  display: block;
  font: 900 36px/0.9 Georgia, "Times New Roman", serif;
}

.commitment-mark span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.commitment-strip h2 {
  font-size: 18px;
}

.commitment-strip p {
  margin: 9px 0 0;
  line-height: 1.55;
}

.commitment-strip article {
  text-align: center;
}

.commitment-strip article h3 {
  margin: 12px auto 0;
  max-width: 130px;
  font-size: 11px;
  line-height: 1.35;
}

.commitment-icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  position: relative;
}

.commitment-icon.leaf {
  border: 2px solid #111;
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
}

.commitment-icon.leaf::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  width: 22px;
  height: 2px;
  background: #111;
  transform: rotate(-35deg);
}

.commitment-icon.people::before,
.commitment-icon.people::after {
  content: "";
  position: absolute;
  border: 2px solid #111;
}

.commitment-icon.people::before {
  left: 10px;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: -12px 7px 0 -2px #fff, -12px 7px 0 0 #111, 12px 7px 0 -2px #fff, 12px 7px 0 0 #111;
}

.commitment-icon.people::after {
  left: 3px;
  bottom: 1px;
  width: 26px;
  height: 15px;
  border-radius: 14px 14px 5px 5px;
}

.commitment-icon.education::before {
  content: "";
  position: absolute;
  inset: 6px 1px auto;
  height: 15px;
  border: 2px solid #111;
  transform: skewY(-20deg) rotate(-10deg);
}

.commitment-icon.education::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 16px;
  height: 8px;
  border: 2px solid #111;
  border-top: 0;
}

.products-page {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  padding: 34px 0 0;
}

.wp-page {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  padding: 34px 0 90px;
}

.wp-page-content > h1 {
  margin: 0 0 28px;
  color: #17191b;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.entry-content {
  color: #30343a;
}

.entry-content .woocommerce {
  width: 100%;
}

.woocommerce-account .entry-content .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.woocommerce-account .entry-content .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-account .entry-content .woocommerce > .woocommerce-message,
.woocommerce-account .entry-content .woocommerce > .woocommerce-info,
.woocommerce-account .entry-content .woocommerce > .woocommerce-error {
  grid-column: 1 / -1;
}

.woocommerce-account .wp-page-content > h1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(30px, 3vw, 40px);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
  width: auto !important;
  float: none !important;
  min-width: 0;
  padding: 10px;
  border: 1px solid #ece7e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 22, 26, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #292d33;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.42;
  transform: rotate(-45deg);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: #a00010;
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  transform: translateX(2px);
}

.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
  width: auto !important;
  float: none !important;
  min-width: 0;
  min-height: 280px;
  padding: 26px 30px;
  border: 1px solid #ece7e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 22, 26, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-account .woocommerce-MyAccount-content td,
.woocommerce-account .woocommerce-MyAccount-content th {
  font-size: 16px;
  line-height: 1.55;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  color: #a00010;
  font-weight: 800;
}

.products-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 34px;
}

.products-heading h1 {
  margin: 0;
  color: #142645;
  font: 700 clamp(36px, 3vw, 52px)/1 Georgia, "Times New Roman", serif;
}

.products-heading p {
  margin: 15px 0 0;
  color: #1c2229;
  font-size: 14px;
  font-weight: 600;
}

.products-toolbar {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #15191d;
  font-size: 14px;
  font-weight: 700;
}

.products-toolbar label,
.view-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.products-toolbar select {
  height: 48px;
  min-width: 150px;
  padding: 0 46px 0 16px;
  border: 1px solid #d7dce2;
  border-radius: 5px;
  background: #fff;
  color: #111820;
  font-weight: 600;
}

.view-toggle button {
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #1b2634;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.view-toggle button.active {
  border-color: #14171b;
}

.view-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.view-toggle button:first-of-type svg {
  fill: currentColor;
  stroke: none;
}

.products-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 46px;
  align-items: start;
}

.filters {
  color: #1b2229;
}

.filters section {
  padding: 0 0 27px;
  margin-bottom: 24px;
  border-bottom: 1px solid #dde2e6;
}

.filters h2 {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 900;
}

.filters h2::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.filters p {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.5;
}

.filters label {
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #323940;
  font-size: 13px;
}

.filters input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--crimson);
}

.range-line {
  height: 18px;
  margin-bottom: 18px;
  position: relative;
}

.range-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 3px;
  background: #111;
}

.range-line span {
  position: absolute;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1.5px solid #111;
  border-radius: 50%;
  background: #fff;
}

.range-line span:first-child {
  left: 0;
}

.range-line span:last-child {
  right: 0;
}

.price-range-form {
  margin: 0 0 24px;
}

.price-range-control {
  --from: 0%;
  --to: 100%;
  height: 30px;
  margin-bottom: 12px;
  position: relative;
}

.price-range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 3px;
  background: linear-gradient(90deg, #d6d9dc var(--from), #111 var(--from), #111 var(--to), #d6d9dc var(--to));
}

.price-range-control input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-range-control input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 1.5px solid #111;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.price-range-control input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 1.5px solid #111;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  pointer-events: auto;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 16px 1fr;
  gap: 9px;
  align-items: center;
}

.price-inputs label {
  height: 42px;
  padding: 0 11px;
  border: 1px solid #d7dce2;
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.price-inputs input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #2f343a;
  background: transparent;
  font-size: 14px;
}

.price-inputs i {
  height: 1px;
  background: #6a6f75;
}

.swatch,
.color-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #c7cbd0;
}

.swatch.crimson,
.color-dots .crimson {
  background: var(--crimson);
  border-color: var(--crimson);
}

.swatch.white,
.color-dots .white {
  background: #fff;
}

.swatch.gray,
.color-dots .gray {
  background: #b8bcc0;
  border-color: #b8bcc0;
}

.swatch.black,
.color-dots .black {
  background: #111;
  border-color: #111;
}

.swatch.navy,
.color-dots .navy {
  background: #10233a;
  border-color: #10233a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.listing-card {
  min-height: 376px;
  padding: 22px 20px 19px;
  border: 1px solid #dfe3e7;
  border-radius: 7px;
  background: #fff;
  position: relative;
  box-shadow: 0 7px 18px rgba(25, 28, 32, 0.04);
}

.listing-card .product-crop {
  width: 100%;
  height: 205px;
  margin-bottom: 21px;
  border-radius: 4px;
  background-color: transparent;
}

.listing-card .product-crop img {
  padding: 8px;
  mix-blend-mode: multiply;
}

.listing-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
}

.listing-card p {
  margin: 0 0 14px;
  color: #11171e;
  font-size: 15px;
  font-weight: 700;
}

.product-badge {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--crimson);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.listing-heart {
  position: absolute;
  right: 18px;
  top: 15px;
  z-index: 2;
  width: 23px;
  height: 23px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.listing-heart::before,
.listing-heart::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 19px;
  border: 2px solid #6b737b;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  transform-origin: 50% 100%;
}

.listing-heart::before {
  left: 2px;
  transform: rotate(-45deg);
}

.listing-heart::after {
  right: 2px;
  transform: rotate(45deg);
}

.color-dots {
  display: flex;
  gap: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 30px 0 26px;
  font-size: 14px;
  font-weight: 700;
}

.pagination a,
.pagination span {
  min-width: 31px;
  height: 31px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: inherit;
}

.pagination .active {
  background: var(--crimson);
  color: #fff;
}

.product-services {
  margin-left: calc(-1 * (100vw - min(100vw - var(--content-gutter), var(--content-width))) / 2);
  margin-right: calc(-1 * (100vw - min(100vw - var(--content-gutter), var(--content-width))) / 2);
  padding-left: max(36px, calc((100vw - var(--content-width)) / 2 + 36px));
  padding-right: max(36px, calc((100vw - var(--content-width)) / 2 + 36px));
}

.college-page {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  padding: 0 0 0;
}

.college-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.3fr);
  min-height: 260px;
  align-items: stretch;
  border-bottom: 1px solid rgba(22, 22, 22, 0.07);
}

.college-hero-copy {
  padding: 30px 54px 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.college-hero .breadcrumb {
  margin: 0 0 28px;
}

.college-hero h1 {
  margin: 0;
  color: #142645;
  font: 700 clamp(36px, 3.7vw, 56px)/1.05 Georgia, "Times New Roman", serif;
}

.college-hero p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #182431;
  font: 600 17px/1.75 Georgia, "Times New Roman", serif;
}

.college-hero-image {
  min-height: 260px;
}

.college-hero-bg {
  background: url("image/collage-bg.png") center / cover no-repeat;
}

.house-grid {
  margin: 28px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.house-card,
.house-shop-card,
.house-all-card {
  border: 1px solid #e2e3e6;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 9px 20px rgba(26, 23, 19, 0.06);
  overflow: hidden;
}

.house-card .college-crop {
  aspect-ratio: 200 / 205;
}

.house-card img {
  width: 100%;
  aspect-ratio: 340 / 350;
  display: block;
  object-fit: cover;
}

.college-ad {
  margin: 14px 0 16px;
  overflow: hidden;
  background: #f7f4ef;
  display: block;
}

.college-ad img {
  width: 100%;
  height: clamp(150px, 18vw, 240px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.house-shop-grid {
  margin: 20px 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.house-shop-card {
  text-align: center;
  padding-bottom: 19px;
}

.house-shop-card .college-crop {
  aspect-ratio: 200 / 125;
}

.house-shop-card h2 {
  margin: 17px 10px 11px;
  font: 700 18px/1.2 Georgia, "Times New Roman", serif;
}

.house-shop-card a {
  font: 700 14px/1 Georgia, "Times New Roman", serif;
}

.house-all-card {
  min-height: 191px;
  padding: 34px 20px 24px;
  color: #fff;
  background: linear-gradient(135deg, #950613, #b20918 48%, #7b040c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.house-all-card .badge-icon {
  margin-bottom: 18px;
  border-color: #fff;
  color: #fff;
}

.house-all-card h2 {
  margin: 0 0 24px;
  color: #fff;
  font: 700 27px/1.08 Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.house-all-card a {
  font-size: 13px;
  font-weight: 800;
}

.college-banner {
  min-height: 151px;
  margin: 24px 0 26px;
  position: relative;
  overflow: hidden;
  background: #121212;
}

.college-banner > .college-crop {
  position: absolute;
  inset: 0;
  height: 100%;
}

.college-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.3) 42%, rgba(0,0,0,0.86) 63%, rgba(0,0,0,0.95));
}

.college-banner-copy {
  position: relative;
  z-index: 1;
  min-height: 151px;
  margin-left: auto;
  width: min(42%, 410px);
  padding: 28px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.college-banner-copy h2 {
  margin: 0;
  color: #fff;
  font: 700 30px/1.06 Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.college-banner-copy p {
  margin: 14px 0 16px;
  font: 600 14px/1.35 Georgia, "Times New Roman", serif;
}

.college-banner-copy a {
  height: 34px;
  padding: 0 22px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  background: var(--crimson);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.college-services {
  margin-left: calc(-1 * (100vw - min(100vw - var(--content-gutter), var(--content-width))) / 2);
  margin-right: calc(-1 * (100vw - min(100vw - var(--content-gutter), var(--content-width))) / 2);
  padding-left: max(36px, calc((100vw - var(--content-width)) / 2 + 36px));
  padding-right: max(36px, calc((100vw - var(--content-width)) / 2 + 36px));
}

.contact-page {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin: 0 auto;
  padding: 34px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
  margin-top: 34px;
}

.contact-info h1 {
  margin: 0;
  color: #161b22;
  font: 700 clamp(40px, 3.8vw, 58px)/1.05 Georgia, "Times New Roman", serif;
}

.contact-lead {
  max-width: 440px;
  margin: 0 0 24px;
  color: #20262d;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.contact-method {
  max-width: 470px;
  padding: 25px 0;
  border-bottom: 1px solid #e2e5e8;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
}

.contact-method h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.contact-method p {
  margin: 0;
  color: #30363d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: #f7f5f2;
  color: var(--crimson);
}

.contact-icon.pin::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 13px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon.pin::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.contact-icon.mail::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 25px;
  height: 18px;
  border: 2px solid currentColor;
}

.contact-icon.mail::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  width: 19px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) skew(12deg, 12deg);
}

.contact-icon.phone::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  width: 17px;
  height: 26px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 16px 0 0 16px;
  transform: rotate(-38deg);
}

.contact-svg-icon {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.contact-map {
  max-width: 470px;
  min-height: 236px;
  margin: 28px 0 23px;
}

.licensed-note {
  max-width: 470px;
  padding: 20px 23px;
  border-radius: 3px;
  background: rgba(248, 246, 242, 0.96);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
}

.licensed-note .badge-icon {
  width: 52px;
  height: 58px;
  color: var(--crimson);
  border-color: var(--crimson);
}

.licensed-note h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.licensed-note p {
  margin: 0;
  color: #30363d;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form,
.help-panel {
  border: 1px solid #e0e3e6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 23, 19, 0.05);
}

.contact-form {
  padding: 31px 30px 28px;
}

.contact-form h2,
.help-panel h2 {
  margin: 0;
  color: #171b20;
  font: 700 30px/1.15 Georgia, "Times New Roman", serif;
}

.contact-form > p {
  margin: 13px 0 28px;
  color: #30363d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form .privacy-check > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dde1;
  border-radius: 4px;
  background: #fff;
  color: #182029;
  font-size: 14px;
  outline: 0;
}

.contact-form input {
  height: 46px;
  padding: 0 15px;
}

.message-field {
  display: block;
  margin-top: 18px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 15px;
  resize: vertical;
}

.privacy-check {
  margin: 18px 0;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #343a40;
  font-size: 14px;
}

.privacy-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--crimson);
}

.privacy-check a {
  color: var(--crimson);
  text-decoration: underline;
  font-weight: 800;
}

.contact-form button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #a30715, #c0091a, #a10714);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.help-panel {
  margin-top: 30px;
  padding: 29px 30px 22px;
}

.help-panel .rule {
  margin: 16px 0 12px;
}

.help-panel article {
  padding: 20px 0;
  border-bottom: 1px solid #e3e5e8;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  align-items: center;
}

.help-panel article:last-child {
  border-bottom: 0;
}

.help-panel h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.help-panel p {
  margin: 0;
  color: #454b52;
  font-size: 14px;
  line-height: 1.45;
}

.help-icon,
.service-icon.gift {
  width: 34px;
  height: 34px;
  display: inline-block;
  position: relative;
  color: var(--crimson);
}

.help-icon.box {
  border: 2px solid currentColor;
  transform: rotate(30deg) skew(-8deg, -8deg);
}

.help-icon.bag,
.service-icon.gift {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.help-icon.bag::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -9px;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.help-icon.shake::before,
.help-icon.shake::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.help-icon.shake::before {
  left: 1px;
  top: 9px;
  transform: rotate(35deg);
}

.help-icon.shake::after {
  right: 1px;
  top: 9px;
  transform: rotate(-35deg);
}

.help-icon.chat {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.help-icon.chat::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-20deg);
  background: #fff;
}

.help-svg-icon,
.service-svg-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.contact-note-icon {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.service-icon.gift::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -5px;
  width: 2px;
  height: 39px;
  background: currentColor;
}

.service-icon.gift::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 9px;
  width: 40px;
  height: 2px;
  background: currentColor;
}

.contact-services {
  margin: 52px 0 0;
  border-radius: 4px 4px 0 0;
  background: rgba(248, 246, 242, 0.92);
}

.detail-page {
  width: min(100% - var(--content-gutter), 1440px);
  margin: 0 auto;
  padding: 28px 0 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(405px, 1fr);
  gap: 34px;
  align-items: start;
  justify-content: stretch;
  margin-top: 25px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(84px, 1fr) minmax(0, 5fr);
  gap: 18px;
}

.detail-thumbs {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-thumbs button {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid #e1e3e6;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.detail-thumbs button.active {
  border: 2px solid var(--crimson);
}

.detail-thumbs .detail-crop {
  height: 100%;
  display: block;
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.detail-main-image {
  min-height: 0;
  height: clamp(560px, 44vw, 650px);
  border-radius: 5px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.detail-main-image > .detail-crop {
  height: 100%;
  background-color: var(--soft);
}

.detail-product-frame,
.detail-related-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.detail-product-frame img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  padding: 10px;
  mix-blend-mode: multiply;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 92px;
  height: 23px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-dots span,
.gallery-dots b {
  display: block;
  height: 2px;
  width: 22px;
  background: #d7d2cf;
}

.gallery-dots b {
  background: var(--crimson);
}

.product-info {
  padding: 2px 0 0;
}

.detail-brand {
  margin: 0 0 8px;
  color: var(--crimson);
  font-size: 14px;
  font-weight: 900;
}

.product-info h1 {
  margin: 0 0 13px;
  color: #16171a;
  font: 700 clamp(33px, 3vw, 46px)/1.08 Georgia, "Times New Roman", serif;
}

.detail-price {
  margin: 0 0 7px;
  font-size: 21px;
  font-weight: 900;
}

.installments {
  margin: 0 0 14px;
  color: #5a6168;
  font-size: 14px;
}

.installments strong {
  padding: 2px 8px;
  border-radius: 999px;
  background: #bde4c5;
  color: #16351c;
}

.detail-rating {
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfe3e6;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #ff9a19;
  font-size: 18px;
}

.detail-rating a {
  color: #20262d;
  font-size: 13px;
  font-weight: 700;
}

.detail-option {
  margin-bottom: 20px;
}

.detail-option h2,
.size-row h2 {
  margin: 0 0 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.option-dots {
  display: flex;
  gap: 12px;
}

.option-dots button {
  width: 23px;
  height: 23px;
  border: 1px solid #c7cbd0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.option-dots button.active {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}

.option-dots .crimson { background: var(--crimson); }
.option-dots .gray { background: #d7d7d5; }
.option-dots .silver { background: #aaa; }

.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-row a {
  color: #6a6260;
  font-size: 12px;
  text-decoration: underline;
}

.size-buttons {
  display: flex;
  gap: 12px;
}

.size-buttons button,
.quantity-box button,
.quantity-box span {
  min-width: 40px;
  height: 36px;
  border: 1px solid #d4d8dc;
  border-radius: 5px;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  cursor: pointer;
}

.size-buttons button.active {
  border-color: var(--crimson);
  color: var(--crimson);
}

.quantity-box {
  display: inline-grid;
  grid-template-columns: repeat(3, 40px);
}

.quantity-box button,
.quantity-box span,
.quantity-box input {
  border-radius: 0;
}

.quantity-box input {
  width: 40px;
  height: 36px;
  border: 1px solid #d4d8dc;
  border-left: 0;
  border-right: 0;
  background: #fff;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
}

.quantity-box input::-webkit-outer-spin-button,
.quantity-box input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-box button:first-child {
  border-radius: 5px 0 0 5px;
}

.quantity-box button:last-child {
  border-radius: 0 5px 5px 0;
}

.add-cart,
.wishlist-wide {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.add-cart {
  border: 0;
  background: linear-gradient(90deg, #8e0611, #b50818, #920611);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.add-cart:disabled,
.add-cart.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.wishlist-wide {
  margin-top: 10px;
  border: 1px solid #d8dce0;
  background: #fff;
  color: #252a30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: none;
}

.wishlist-wide.is-active {
  border-color: var(--crimson);
  color: var(--crimson);
}

.wishlist-empty {
  width: min(var(--content-width), calc(100% - 72px));
  margin: 0 auto 80px;
  color: #5d6268;
}

.mini-cart-open {
  overflow: hidden;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 19, 22, 0.34);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mini-cart-overlay.is-open {
  opacity: 1;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 91;
  width: min(420px, 92vw);
  height: 100vh;
  background: #fff;
  box-shadow: -18px 0 42px rgba(17, 19, 22, 0.18);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.mini-cart-drawer.is-open {
  transform: translateX(0);
}

.mini-cart-head {
  min-height: 88px;
  padding: 22px 24px;
  border-bottom: 1px solid #eceff2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mini-cart-head > div > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--crimson);
}

.mini-cart-head strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  color: #17191b;
}

.mini-cart-head button {
  width: 36px;
  height: 36px;
  border: 1px solid #d9dde2;
  border-radius: 50%;
  background: #fff;
  color: #24272b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mini-cart-status {
  margin: 16px 24px 0;
  padding: 11px 13px;
  border-radius: 6px;
  background: #f2f7f0;
  color: #25612c;
  font-size: 13px;
  font-weight: 800;
}

.mini-cart-content {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 24px 24px;
}

.mini-cart-empty {
  padding: 44px 0;
  text-align: center;
}

.mini-cart-empty p {
  margin: 0 0 18px;
  color: #5d6268;
}

.mini-cart-empty a,
.mini-cart-checkout,
.mini-cart-view {
  min-height: 44px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
}

.mini-cart-empty a,
.mini-cart-checkout {
  background: var(--crimson);
  color: #fff;
}

.mini-cart-items {
  display: grid;
  gap: 18px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}

.mini-cart-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: var(--soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mini-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mini-cart-detail h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.mini-cart-detail h3 a {
  color: inherit;
  text-decoration: none;
}

.mini-cart-detail dl {
  margin: 0 0 7px;
  display: grid;
  gap: 3px;
  font-size: 12px;
  color: #5e646b;
}

.mini-cart-detail dt,
.mini-cart-detail dd {
  margin: 0;
  display: inline;
}

.mini-cart-detail p {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
}

.mini-cart-remove {
  color: #7a8087;
  font-size: 12px;
}

.mini-cart-summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eceff2;
  display: grid;
  gap: 10px;
}

.mini-cart-summary p {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.mini-cart-view {
  border: 1px solid #d8dce0;
  color: #24272b;
}

.wishlist-heart {
  font-size: 18px;
  line-height: 1;
}

.wishlist-icon-button {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(105, 113, 122, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #69717a;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.wishlist-icon-button .wishlist-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wishlist-icon-button .wishlist-heart {
  font-size: 24px;
  transform: translateY(-1px);
}

.wishlist-icon-button.is-active {
  border-color: rgba(157, 7, 18, 0.45);
  background: #fff5f6;
  color: var(--crimson);
}

.pickup-box {
  margin: 14px 0 16px;
  padding: 15px 17px;
  border-radius: 4px;
  background: #dff4e6;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}

.pickup-box > span {
  width: 24px;
  height: 13px;
  margin-top: 8px;
  border-left: 3px solid #39a65a;
  border-bottom: 3px solid #39a65a;
  transform: rotate(-45deg);
}

.pickup-box strong {
  font-size: 13px;
}

.pickup-box p,
.pickup-box a {
  margin: 3px 0 0;
  color: #3a4640;
  font-size: 12px;
}

.pickup-box a {
  color: var(--crimson);
  text-decoration: underline;
}

.detail-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-badges article {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.detail-badge-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  background: transparent;
}

.detail-badges p {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}

.support-banner {
  width: 100%;
  min-height: 88px;
  margin: 42px 0 24px;
  padding: 18px 24px;
  border-radius: 4px;
  background: #f6f3ef;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(260px, 1fr) 1fr;
  gap: 20px;
  align-items: center;
}

.support-banner > .detail-crop {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.support-banner > .detail-ad-crop {
  background-image: url("assets/detail-ad-bg.png");
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

.support-banner > *:not(.detail-crop) {
  position: relative;
  z-index: 1;
}

.support-banner .badge-icon {
  width: 52px;
  height: 58px;
  color: var(--crimson);
  border-color: var(--crimson);
}

.support-banner h2 {
  margin: 0 0 9px;
  max-width: 430px;
  font-size: 14px;
  line-height: 1.4;
}

.support-banner a {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 800;
}

.related-products {
  width: 100%;
  margin: 0 0 34px;
}

.related-products > h2,
.reviews > h2 {
  margin: 0 0 18px;
  color: #17191c;
  font: 700 24px/1.25 Georgia, "Times New Roman", serif;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.related-grid article {
  border: 1px solid #e0e3e6;
  border-radius: 5px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.related-grid .detail-crop {
  height: clamp(245px, 18vw, 310px);
  background-color: var(--soft);
}

.related-grid .detail-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  mix-blend-mode: multiply;
}

.related-grid h3,
.related-grid p,
.related-grid .rating {
  margin-left: 12px;
  margin-right: 12px;
}

.related-grid h3 {
  min-height: 31px;
  margin-top: 13px;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.25;
}

.related-grid p {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.related-grid .rating {
  margin-bottom: 12px;
  color: #ff9a19;
  font-size: 12px;
}

.reviews {
  width: 100%;
  margin: 0 auto 36px;
}

.reviews > h2 {
  text-align: center;
}

.reviews-summary,
.review-filters {
  width: min(100%, 960px);
  margin-left: auto;
  margin-right: auto;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 170px 1fr 160px;
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}

.review-score {
  text-align: center;
}

.review-score strong {
  display: block;
  color: var(--crimson);
  font-size: 44px;
  line-height: 1;
}

.review-score span,
.review-body .stars {
  color: #ff9a19;
}

.review-body .stars {
  margin-bottom: 5px;
  font-size: 15px;
}

.review-score p {
  margin: 4px 0 0;
  font-size: 11px;
}

.review-bars p {
  margin: 5px 0;
  display: grid;
  grid-template-columns: 20px 1fr 18px;
  gap: 8px;
  align-items: center;
  color: #c77b13;
  font-size: 12px;
}

.review-bars span {
  height: 7px;
  border-radius: 99px;
  background: #e7e8ea;
}

.review-bars p:first-child span {
  background: linear-gradient(90deg, #bfc2c7 100%, #e7e8ea 100%);
}

.reviews-summary button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--crimson);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.review-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
  gap: 10px;
  margin-bottom: 14px;
}

.review-filters button,
.review-filters input {
  height: 33px;
  border: 1px solid #d9dde1;
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  font-size: 12px;
}

.review-filters label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.review-list {
  border: 1px solid #dfe3e6;
  border-radius: 6px;
  background: #fff;
}

.review-list article {
  min-height: 132px;
  padding: 28px 30px;
  border-bottom: 1px solid #e4e6e8;
  display: grid;
  grid-template-columns: 52px 130px 1fr 116px 92px;
  gap: 20px;
  align-items: start;
}

.review-list article:last-child {
  border-bottom: 0;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff0f1;
  display: grid;
  place-items: center;
  color: #67707a;
  font-size: 15px;
}

.review-list h3,
.review-list h4 {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.25;
}

.verified {
  margin: 0;
  color: var(--crimson);
  font-size: 11px;
  font-weight: 800;
}

.review-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.review-list time {
  color: #1f252b;
  font-size: 13px;
}

.review-photo {
  width: 86px;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-services {
  width: 100%;
  background: var(--soft);
  padding-left: max(36px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(36px, calc((100vw - var(--content-width)) / 2));
}

@media (max-width: 980px) {
  .top-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .top-item,
  .top-item:first-child,
  .top-item:last-child {
    justify-content: center;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand span {
    font-size: 34px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .header-tools {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .woocommerce-account .entry-content .woocommerce {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 1;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .hero-copy {
    padding-right: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88) 64%, rgba(255,255,255,0.2));
  }

  .hero-photo {
    inset: 210px 0 0 0;
  }

  .hero-photo::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 150px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.46) 58%, rgba(255,255,255,0) 100%);
  }

  .hero-photo::after {
    display: none;
  }

  .category-band,
  .product-section,
  .story-banner,
  .testimonials,
  .about-page,
  .products-page,
  .college-page,
  .contact-page,
  .detail-page {
    width: min(100% - 32px, 720px);
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .product-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-next {
    display: none;
  }

  .testimonial-track,
  .service-row,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-track {
    padding: 0;
  }

  .site-footer {
    min-height: 430px;
    padding-top: 56px;
    padding-bottom: 52px;
    gap: 34px;
  }

  .about-hero,
  .about-story,
  .about-team,
  .commitment-strip,
  .products-layout,
  .college-hero,
  .contact-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .about-hero {
    gap: 30px;
  }

  .about-hero-image {
    min-height: 420px;
    order: -1;
  }

  .about-service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .team-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commitment-strip {
    text-align: center;
  }

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-toolbar {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .filters section {
    margin-bottom: 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-services {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .college-hero-copy {
    padding: 30px 0;
  }

  .college-hero-image {
    min-height: 300px;
    order: -1;
  }

  .house-grid,
  .house-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .college-banner-copy {
    width: 58%;
  }

  .college-services {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-method,
  .contact-map,
  .licensed-note {
    max-width: none;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-thumbs {
    grid-template-columns: repeat(5, 70px);
    overflow-x: auto;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-summary,
  .review-filters {
    grid-template-columns: 1fr;
  }

  .review-list article {
    grid-template-columns: 42px 1fr;
  }

  .review-body,
  .review-list time,
  .review-photo {
    grid-column: 2;
  }

  .detail-services {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 18px;
  }

  .brand span {
    font-size: 31px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .product-cards,
  .testimonial-track,
  .service-row,
  .about-service-band,
  .about-gallery,
  .team-cards,
  .products-grid,
  .filters,
  .house-grid,
  .house-shop-grid,
  .form-grid,
  .related-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .rail-feature {
    min-height: 165px;
  }

  .story-banner {
    min-height: 190px;
  }

  .story-copy {
    min-height: 190px;
    padding: 24px 22px;
  }

  .testimonial-card {
    grid-template-columns: 1fr 72px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 8px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 22px 18px;
  }

  .about-page {
    padding-top: 24px;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .about-copy h1 {
    font-size: 34px;
  }

  .about-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-image {
    min-height: 330px;
  }

  .about-service-band,
  .commitment-strip {
    padding: 22px;
  }

  .about-gallery .about-crop {
    min-height: 210px;
  }

  .products-heading h1 {
    font-size: 34px;
  }

  .products-toolbar,
  .products-toolbar label,
  .view-toggle {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-toolbar {
    gap: 14px;
  }

  .products-toolbar select {
    width: 100%;
  }

  .listing-card {
    min-height: 340px;
  }

  .listing-card .product-crop {
    height: 190px;
  }

  .college-hero h1 {
    font-size: 36px;
  }

  .college-hero p {
    font-size: 15px;
  }

  .college-banner {
    min-height: 260px;
  }

  .college-banner > .college-crop {
    opacity: 0.55;
  }

  .college-banner::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.76));
  }

  .college-banner-copy {
    width: 100%;
    min-height: 260px;
    padding: 30px 24px;
  }

  .contact-info h1 {
    font-size: 38px;
  }

  .contact-lead {
    font-size: 15px;
  }

  .contact-method {
    grid-template-columns: 56px 1fr;
  }

  .contact-form,
  .help-panel {
    padding: 24px;
  }

  .contact-form h2,
  .help-panel h2 {
    font-size: 26px;
  }

  .product-info h1 {
    font-size: 32px;
  }

  .detail-main-image,
  .detail-main-image > .detail-crop {
    min-height: 0;
  }

  .detail-main-image {
    height: clamp(430px, 110vw, 560px);
  }

  .detail-main-image > .detail-crop {
    height: 100%;
  }

  .support-banner {
    grid-template-columns: 1fr;
  }

  .support-banner > .detail-crop {
    width: 100%;
    opacity: 0.25;
  }

  .detail-badges {
    grid-template-columns: 1fr;
  }
}
