@font-face {
  font-family: "RiseDisplay";
  src: local("Arial Black");
}

:root {
  --yellow: #ffc400;
  --yellow-2: #f0a800;
  --black: #080808;
  --white: #ffffff;
  --offwhite: #f6f5ef;
  --grey: #686868;
  --line: rgba(8, 8, 8, .12);
  --radius: 28px;
  --shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--offwhite);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 239, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 8, 8, .08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 196px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d2d2d;
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a:hover { color: var(--yellow-2); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span {
  width: 25px;
  height: 3px;
  margin: 5px 0;
  display: block;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.68)),
    url("assets/rise-pattern.svg");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: 58px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.kicker {
  margin: 0 0 14px;
  color: var(--yellow-2);
  font-size: .78rem;
  line-height: 1.4;
  font-weight: 1000;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: RiseDisplay, Impact, "Arial Black", sans-serif;
  font-size: clamp(4.2rem, 8.6vw, 8.35rem);
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

h1 span {
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--black);
  text-shadow: 8px 8px 0 var(--black);
}

h2 {
  margin-bottom: 18px;
  font-family: RiseDisplay, Impact, "Arial Black", sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.lead, .section-head p, .benefit-grid p, .steps-grid p, .section-note, .measure-card li, .contact-box p {
  color: var(--grey);
  line-height: 1.75;
}

.lead {
  max-width: 600px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--black);
  box-shadow: 0 18px 40px rgba(255, 196, 0, .28);
}

.btn-light {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
}

.btn-dark {
  width: 100%;
  color: var(--white);
  background: var(--black);
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  transform: translateX(22px);
}

.product-stage {
  position: relative;
  width: min(100%, 690px);
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,196,0,.30), transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,246,241,.86));
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  z-index: 0;
}

.product-stage::after {
  content: "";
  position: absolute;
  width: 74%;
  height: 22px;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  filter: blur(18px);
  z-index: 0;
}

.hero-shirt {
  position: relative;
  z-index: 2;
  width: min(112%, 760px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.36));
  transform: translateY(8px);
}

.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8,8,8,.82);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  font-weight: 1000;
  text-transform: uppercase;
  font-size: .78rem;
  white-space: nowrap;
}

.badge-one { left: 3%; top: 22%; transform: rotate(-6deg); }
.badge-two { right: -2%; bottom: 24%; transform: rotate(5deg); }

.section { padding: 92px 0; }

.section-head {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-head.light h2,
.section-head.light p,
.dark-section h2,
.dark-section p,
.contact-section h2,
.contact-section p { color: var(--white); }

.section-head.light p:not(.kicker),
.contact-section p { color: rgba(255,255,255,.72); }

.section-note {
  max-width: 330px;
  margin-bottom: 18px;
  font-weight: 800;
}

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

.benefit-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 40px;
  transform: rotate(18deg);
  background: rgba(255, 196, 0, .18);
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 18px;
  font-size: 1.7rem;
  font-weight: 1000;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(8,8,8,.96), rgba(18,18,18,.95)),
    url("assets/rise-pattern.svg");
  background-size: cover;
  background-position: center;
}

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

.steps-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.steps-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3.7rem;
  line-height: .8;
}

.steps-grid h3,
.steps-grid p { color: var(--white); }

.steps-grid p { color: rgba(255,255,255,.72); }

.catalog-grid {
  display: grid;
  gap: 20px;
}

.collar-grid { grid-template-columns: repeat(5, 1fr); }
.material-grid { grid-template-columns: repeat(4, 1fr); }

.catalog-card {
  margin: 0;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.catalog-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0,0,0,.12);
}

.material-section { background: #fff; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-button.active {
  background: var(--black);
  color: var(--white);
}

.table-panel { display: none; }
.table-panel.active { display: block; }

.table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th {
  color: var(--black);
  background: var(--yellow);
  text-transform: uppercase;
  font-size: .86rem;
}

th, td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-align: center;
  font-weight: 800;
}

td:first-child, th:first-child { text-align: left; }

tbody tr:hover { background: #fff8d8; }

.measure-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.measure-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.measure-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
}


.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,196,0,.22), transparent 30%),
    linear-gradient(135deg, #101010 0%, #050505 58%, #17130a 100%);
  color: var(--white);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/rise-pattern.svg");
  background-size: cover;
  background-position: center;
  opacity: .055;
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-head {
  align-items: end;
  margin-bottom: 30px;
}

.gallery-head h2 {
  max-width: 760px;
  color: var(--white);
}

.gallery-summary {
  max-width: 420px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.mockup-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  background: #111;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.mockup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72) 100%);
  opacity: .78;
  transition: opacity .25s ease;
}

.mockup-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.mockup-card:hover img { transform: scale(1.045); }
.mockup-card:hover::after { opacity: .9; }

.mockup-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,196,0,.95);
  color: var(--black);
  font-size: .82rem;
  font-weight: 1000;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.gallery-footer p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.gallery-footer .btn {
  flex: 0 0 auto;
}

.catalogue-section {
  background:
    linear-gradient(135deg, rgba(8,8,8,.97), rgba(15,15,15,.96)),
    url("assets/rise-pattern.svg");
  background-size: cover;
  background-position: center;
}

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

.catalogue-grid a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.catalogue-grid img {
  width: 100%;
  aspect-ratio: 0.707;
  object-fit: cover;
  transition: transform .25s ease;
}

.catalogue-grid a:hover img { transform: scale(1.035); }

.contact-section { background: var(--black); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: center;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.contact-card p { color: var(--grey); }
.contact-card a:not(.btn) { font-weight: 1000; }

.footer {
  padding: 32px 0;
  color: #d6d6d6;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.footer img { width: 196px; filter: none; }

.footer-tagline {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .01em;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2c94c;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, opacity .18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: .85;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

@media (max-width: 1080px) {
  .collar-grid { grid-template-columns: repeat(3, 1fr); }
  .material-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .hero-grid, .measure-card, .contact-box { grid-template-columns: 1fr; }
  .mockup-gallery-grid { grid-template-columns: 1fr; }
  .gallery-footer { align-items: flex-start; flex-direction: column; }
  .hero-visual {
    min-height: 560px;
    transform: none;
  }
  .product-stage {
    min-height: 540px;
    width: min(100%, 650px);
  }
  .hero-shirt { width: min(108%, 660px); }
  .section-head.split { display: block; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-two { right: 4%; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .brand img { width: 156px; }
  h1 { font-size: clamp(3.8rem, 17vw, 5.8rem); }
  h1 span { -webkit-text-stroke: 1px var(--black); text-shadow: 5px 5px 0 var(--black); }
  h2 { font-size: clamp(2.2rem, 12vw, 3.8rem); }
  .hero-actions .btn { width: 100%; }
  .hero-grid { padding: 44px 0 58px; }
  .hero-visual { min-height: 500px; }
  .product-stage { min-height: 480px; }
  .hero-shirt { width: 116%; }
  .floating-badge {
    font-size: .68rem;
    padding: 10px 12px;
  }
  .badge-one { left: 0; top: 18%; }
  .badge-two { right: 0; bottom: 19%; }
  .section { padding: 68px 0; }
  .benefit-grid, .steps-grid, .collar-grid, .material-grid, .catalogue-grid, .mockup-gallery-grid { grid-template-columns: 1fr; }
  .mockup-card, .mockup-card img { min-height: 300px; }
  .gallery-head { margin-bottom: 22px; }
  .gallery-footer .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; align-items: center; justify-items: center; gap: 16px; text-align: center; }
  .footer-logo-box { margin: 0 auto; }
  .footer-tagline { font-size: 1rem; max-width: 320px; }
  .socials { justify-content: center; gap: 12px 18px; width: 100%; }
  .social-link { font-size: .98rem; }
}


/* Hero update: use provided artwork as the main hero image */
.hero {
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(246,245,239,.96) 0%, rgba(246,245,239,.92) 23%, rgba(246,245,239,.78) 38%, rgba(246,245,239,.46) 56%, rgba(246,245,239,.10) 74%),
    url("assets/hero-main-reference.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-grid-overlay {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 82px);
  padding: 86px 0 92px;
}

.hero-copy-overlay {
  max-width: min(46vw, 720px);
}

.hero-copy-overlay .lead {
  max-width: 620px;
}

/* hide old visual styles if ever present */
.hero-grid-overlay .hero-visual,
.hero-grid-overlay .product-stage,
.hero-grid-overlay .hero-shirt,
.hero-grid-overlay .floating-badge {
  display: none !important;
}

@media (max-width: 1200px) {
  .hero-copy-overlay { max-width: min(52vw, 700px); }
}

@media (max-width: 900px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(246,245,239,.90) 0%, rgba(246,245,239,.84) 28%, rgba(246,245,239,.56) 58%, rgba(246,245,239,.24) 100%),
      url("assets/hero-main-reference.png");
    background-position: 68% center;
  }

  .hero-grid-overlay {
    padding: 54px 0 64px;
  }

  .hero-copy-overlay {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: 72% center;
  }

  .hero-grid-overlay {
    padding: 44px 0 56px;
  }

  .hero-copy-overlay .lead {
    font-size: 1.02rem;
  }
}

.footer-grid img { display:block; }


.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f6f5ef;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.footer-logo-box img {
  display: block;
}


/* Reinspected logo fix: use the exact attached logo artwork on a matching light card */
.brand.brand-card {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 236px !important;
  height: auto;
  display: block;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.footer-logo-box img,
.footer img {
  width: 236px !important;
  height: auto;
  display: block;
  filter: none !important;
}

@media (max-width: 640px) {
  .brand img {
    width: 190px !important;
  }
  .footer-logo-box img,
  .footer img {
    width: 190px !important;
  }
}


/* Final logo fix using the exact original uploaded logo file */
.brand.brand-clean {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px !important;
  height: auto !important;
  display: block;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-logo-box img,
.footer img {
  width: 190px !important;
  height: auto !important;
  display: block;
  filter: none !important;
}

@media (max-width: 640px) {
  .brand img,
  .footer-logo-box img,
  .footer img {
    width: 160px !important;
  }
}


/* Header color inversion update */
.site-header {
  background: rgba(8, 8, 8, .94) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.nav-links {
  color: #f5f5f2 !important;
}

.nav-links a {
  color: inherit;
}

.nav-links a:hover {
  color: var(--yellow) !important;
}

.nav-cta {
  background: #ffffff !important;
  color: #080808 !important;
}

.menu-button span {
  background: #ffffff !important;
}

.brand img {
  width: 190px !important;
}

@media (max-width: 900px) {
  .nav-links {
    background: rgba(10, 10, 10, .98) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
  }

  .nav-links a {
    color: #f5f5f2 !important;
  }

  .nav-cta {
    background: #ffffff !important;
    color: #080808 !important;
  }
}


/* Cleaned header logo: no AUTHENTIC wording, vertically centered with more breathing space */
.nav {
  min-height: 96px !important;
  align-items: center !important;
}

.brand.brand-clean,
.brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.brand img {
  width: 190px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 640px) {
  .nav {
    min-height: 92px !important;
  }

  .brand img {
    width: 165px !important;
    max-height: 58px !important;
  }
}


/* Collar section: exact catalogue artwork, cleaned and aligned */
#collars .catalog-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#collars .catalog-card img {
  width: 100% !important;
  aspect-ratio: 760 / 980 !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  image-rendering: auto !important;
}

#collars .catalog-grid {
  align-items: stretch !important;
  row-gap: 22px !important;
}


/* Collar cards redrawn as detailed PNGs */
#collars .catalog-card { background: transparent !important; border: 0 !important; box-shadow: none !important; overflow: visible !important; }
#collars .catalog-card img { width: 100% !important; aspect-ratio: 760 / 980 !important; object-fit: contain !important; border-radius: 20px !important; image-rendering: auto !important; }
#collars .catalog-grid { align-items: stretch !important; row-gap: 22px !important; }


/* Updated measurement diagram image */
.measure-card img { width: 100%; max-width: 420px; height: auto; object-fit: contain; }

/* Polished contact section update */
.contact-box-polished {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px) !important;
  gap: clamp(28px, 5vw, 62px) !important;
}

.contact-copy {
  max-width: 670px;
}

.contact-copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow) !important;
}

.contact-copy .kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  display: inline-block;
}

.contact-card-polished {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 34px) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at top right, rgba(255,196,0,.26), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f6f5ef 100%) !important;
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 30px 80px rgba(0,0,0,.28) !important;
}

.contact-card-polished::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2), #080808);
}

.contact-eyebrow {
  margin: 0 0 8px !important;
  color: var(--yellow-2) !important;
  font-size: .74rem;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card-polished h3 {
  margin: 0;
  color: var(--black);
  font-family: RiseDisplay, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.contact-intro {
  margin: 12px 0 20px !important;
  color: #555 !important;
  font-weight: 800;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(8,8,8,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240,168,0,.48);
  box-shadow: 0 18px 34px rgba(0,0,0,.10);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 1000;
}

.contact-item small {
  display: block;
  margin-bottom: 4px;
  color: #777;
  font-size: .74rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  color: var(--black);
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 1000;
  letter-spacing: -.015em;
  overflow-wrap: anywhere;
}

.contact-cta {
  width: 100%;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(8,8,8,.18);
}

@media (max-width: 900px) {
  .contact-box-polished {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .contact-card-polished {
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}


/* Refined contact intro copy */
.contact-copy {
  color: #ffffff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0;
  max-width: 680px;
}


/* Mobile menu CTA readability */
@media (max-width: 900px) {
  .nav-links .btn,
  .nav-links .btn-light,
  .nav-links .btn-white,
  .nav-links a.btn {
    color: #000 !important;
  }
}

/* Strong fix: mobile Order Now CTA text must remain visible */
@media (max-width: 900px) {
  .nav-links a[href="#contact"].btn,
  .nav-links .btn[href="#contact"],
  .nav-links a.btn,
  .nav-links .btn {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .nav-links a[href="#contact"].btn *,
  .nav-links .btn[href="#contact"] *,
  .nav-links a.btn *,
  .nav-links .btn * {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }
}

/* Mockup gallery view-only refinement */
.mockup-card,
.mockup-card img,
.gallery-card,
.gallery-card img {
  cursor: default !important;
}

.mockup-card a,
.gallery-card a {
  pointer-events: none !important;
}

.mockup-card:hover,
.gallery-card:hover {
  transform: none !important;
}

.gallery-footer {
  text-align: center;
}

/* Gallery CTA bar */
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 22px 22px 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(110deg, rgba(255,255,255,.09), rgba(255,255,255,.035) 62%, rgba(248,196,0,.11) 63%, rgba(248,196,0,.08)),
    rgba(20,20,20,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.gallery-footer p {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.gallery-album-btn {
  flex: 0 0 auto;
  min-width: 225px;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 999px;
  background: #f8c400 !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  border: 0 !important;
  box-shadow: 0 16px 35px rgba(248,196,0,.25);
  font-size: .92rem;
  font-weight: 1000;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gallery-album-btn:hover {
  transform: translateY(-2px);
  background: #ffd21a !important;
  box-shadow: 0 20px 42px rgba(248,196,0,.32);
}

@media (max-width: 760px) {
  .gallery-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px;
    gap: 18px;
  }

  .gallery-footer p {
    max-width: none;
  }

  .gallery-album-btn {
    width: 100%;
    min-width: 0;
  }
}
