/* =========================
   GLOBAL
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c22127;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

#schools,
#sports,
#products,
#portraits,
#about,
#contact {
  scroll-margin-top: 100px;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.98);
  color: #f5f5f5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-wrapper {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 78px;
  max-width: 210px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.8vw, 26px);
  margin-left: auto;
}

.main-nav > a {
  color: #dedede;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav > a:hover {
  color: #ffffff;
}

.main-nav > .custom-products-nav {
  font-size: 0.74rem;
  line-height: 1.2;
  text-align: center;
}

.main-nav > .two-line-nav {
  line-height: 1.2;
  text-align: center;
}

.order-button {
  background: #d9272e;
  padding: 13px 20px;
  border-radius: 3px;
  color: white !important;
  white-space: nowrap;
  transition: background-color 0.2s ease !important;
}

.order-button:hover {
  background: #bd1f25;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 8, 0.95) 0%,
      rgba(7, 7, 8, 0.83) 38%,
      rgba(7, 7, 8, 0.34) 72%,
      rgba(7, 7, 8, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7, 7, 8, 0.4) 0%,
      transparent 42%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 116px;
  padding-bottom: 72px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #d7d7d7;
}

.hero h1 {
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4rem, 7vw, 6.9rem);
  max-width: 920px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #e23036;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  margin: 32px 0 38px;
  color: #dedede;
}

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

.hero .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.065em;
}

.hero .btn-primary {
  background: #d9272e;
}

.hero .btn-primary:hover {
  background: #bd1f25;
}

.hero .btn-secondary {
  border-color: rgba(255,255,255,0.55);
  background: rgba(10,10,11,0.28);
}

.hero .btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(10,10,11,0.52);
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.2s;
}

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

.btn-primary {
  background: #d9272e;
  color: white;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.05);
}


/* =========================
   50 YEARS
========================= */

.legacy-section {
  padding: 88px 0;
  background: #111112;
  color: #ffffff;
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.legacy-mark {
  position: relative;
  padding: 42px 0 38px;
  border-top: 1px solid #48484a;
  border-bottom: 1px solid #48484a;
}

.legacy-mark span,
.legacy-mark p {
  display: block;
  color: #c9c9ca;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legacy-mark strong {
  display: block;
  margin: 8px 0 2px;
  color: #d9272e;
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.legacy-content h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  letter-spacing: -0.035em;
}

.legacy-content > p:last-child {
  max-width: 690px;
  color: #b9b9ba;
  font-size: 1.12rem;
  line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.services-section {
  background: #f2f2f2;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 38px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 570px;
  background: #ffffff;
  border: 1px solid #dedede;
}

.feature-panel-sports .feature-image {
  order: 2;
}

.feature-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background-color: #272729;
  background-position: center;
  background-size: cover;
}

.feature-panel-schools .feature-image {
  background-image:
    linear-gradient(135deg, rgba(12,12,13,0.25), rgba(12,12,13,0.05)),
    url("images/schools-feature.jpg");
}

.feature-panel-sports .feature-image {
  background-image:
    linear-gradient(135deg, rgba(12,12,13,0.25), rgba(12,12,13,0.05)),
    url("images/sports-feature.jpg");
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 78px);
}

.feature-label {
  margin-bottom: 18px;
  color: #d9272e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-content h3 {
  max-width: 470px;
  margin-bottom: 30px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  letter-spacing: -0.035em;
}

.feature-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-bottom: 38px;
  list-style: none;
}

.feature-content li {
  position: relative;
  padding-left: 16px;
  color: #595959;
  font-size: 0.91rem;
  line-height: 1.45;
}

.feature-content li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #d9272e;
  content: "";
}

.feature-button {
  align-self: flex-start;
  padding: 14px 20px;
  background: #d9272e;
  color: #ffffff;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.feature-button:hover {
  background: #bd1f25;
}

.supporting-card-grid {
  margin-top: 38px;
}

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

.service-card {
  position: relative;
  background: white;
  padding: 45px;
  min-height: 320px;
  border-top: 4px solid transparent;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-top-color: #d9272e;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.card-number {
  color: #d9272e;
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-card p {
  color: #6b6b6b;
  max-width: 500px;
  margin-bottom: 30px;
}

.service-card a {
  font-weight: 800;
}


/* =========================
   PROCESS
========================= */

.process-section {
  background: #141414;
  color: white;
}

.section-heading.light h2 {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.process-item {
  border-top: 1px solid #444;
  padding-top: 25px;
}

.process-item span {
  color: #d9272e;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-item h3 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
}

.process-item p {
  color: #999999;
  font-size: 0.9rem;
}


/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-year {
  background: #efefef;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-year span {
  font-size: 1rem;
  letter-spacing: 0.25em;
  font-weight: 800;
}

.about-year strong {
  font-size: clamp(4rem, 8vw, 7rem);
  color: #d9272e;
  line-height: 1;
}

.about-content h2 {
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 18px;
  color: #5e5e5e;
  font-size: 1.05rem;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 800;
}


/* =========================
   CTA
========================= */

.cta-section {
  background: #d9272e;
  color: white;
  text-align: center;
  padding: 95px 0;
}

.cta-section .section-label {
  color: white;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.cta-section .btn-primary {
  background: #111111;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #0d0d0d;
  color: white;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 100px;
  max-width: 220px;
  object-fit: contain;
}

.footer-grid p {
  color: #888;
  max-width: 350px;
}

.footer-grid h4 {
  margin-bottom: 18px;
}

.footer-grid a {
  display: block;
  color: #999;
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #252525;
  text-align: center;
  padding: 22px;
  color: #666;
  font-size: 0.8rem;
}


/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  padding: 96px 0 18px;
  background: #111112;
  color: #ffffff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 9vw, 130px);
}

.about-hero-content h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.75vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-hero-content > p:last-child {
  max-width: 690px;
  color: #c7c7c8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-hero-year {
  padding: 14px 0 12px;
  border-top: 1px solid #555557;
  border-bottom: 1px solid #555557;
}

.about-hero-year span {
  display: block;
  margin-bottom: 8px;
  color: #c7c7c8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-hero-year strong {
  display: block;
  color: #d9272e;
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.story-section {
  padding: 88px 0 100px;
  background: #f4f4f4;
}

.story-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 150px);
}

.story-nav {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 20px;
  border-top: 3px solid #d9272e;
}

.story-nav p {
  margin-bottom: 20px;
  color: #171717;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-nav a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #d4d4d4;
  color: #686868;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}

.story-nav a:hover {
  color: #d9272e;
}

.story-chapter {
  padding-bottom: 46px;
  scroll-margin-top: 125px;
}

.story-chapter + .story-chapter {
  padding-top: 46px;
  border-top: 1px solid #cecece;
}

.story-year {
  margin-bottom: 18px !important;
  color: #d9272e !important;
  font-size: 0.75rem !important;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-chapter h2 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  letter-spacing: -0.04em;
}

.story-chapter > p {
  margin-bottom: 24px;
  color: #555555;
  font-size: 1.08rem;
  line-height: 1.85;
}

.story-chapter > p strong {
  color: #1c1c1c;
  font-weight: 800;
}

.story-chapter blockquote {
  margin: 48px 0;
  padding: 8px 0 8px 34px;
  border-left: 4px solid #d9272e;
  color: #1b1b1b;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.story-finale {
  padding-bottom: 0;
}

.story-chapter .story-closing {
  margin-top: 45px;
  padding: 30px 0 0;
  border-top: 3px solid #d9272e;
  color: #171717;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.55;
}

.about-cta {
  padding: 76px 0;
  background: #d9272e;
  color: #ffffff;
  text-align: center;
}

.about-cta .section-label {
  color: #ffffff;
}

.about-cta h2 {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.about-cta .btn-primary {
  background: #111112;
}


/* =========================
   SCHOOLS PAGE
========================= */

.schools-hero {
  padding: 96px 0 18px;
  background: #111112;
  color: #ffffff;
}

.schools-hero-content {
  max-width: 920px;
}

.schools-hero h1 {
  max-width: 850px;
  margin-bottom: 12px;
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.75vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.schools-hero-content > p:last-child {
  max-width: 760px;
  color: #c7c7c8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.school-gallery-section {
  padding: 18px 0 70px;
  background: #f3f3f3;
}

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

.school-section-heading .section-label {
  flex-shrink: 0;
  margin-bottom: 9px;
}

.school-section-heading h2 {
  max-width: 720px;
  text-align: right;
}

.school-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
}

.school-gallery-image {
  aspect-ratio: 4 / 5;
  background-color: #272729;
  background-position: center;
  background-size: cover;
  border-bottom: 5px solid #d9272e;
}

.school-gallery-image-one {
  background-image:
    linear-gradient(rgba(15,15,16,0.08), rgba(15,15,16,0.08)),
    url("images/schools-sample-1.jpg");
}

.school-gallery-image-two {
  background-image:
    linear-gradient(rgba(15,15,16,0.08), rgba(15,15,16,0.08)),
    url("images/schools-sample-2.jpg");
}

.school-gallery-image-three {
  background-image:
    linear-gradient(rgba(15,15,16,0.08), rgba(15,15,16,0.08)),
    url("images/schools-sample-3.jpg");
}

.school-services-section {
  padding: 88px 0;
  background: #ffffff;
}

.school-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 9vw, 130px);
}

.school-service-group h2 {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.school-check-list,
.school-reasons-list {
  list-style: none;
}

.school-check-list li {
  position: relative;
  padding: 14px 0 14px 25px;
  border-bottom: 1px solid #dedede;
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 700;
}

.school-check-list li::before {
  position: absolute;
  top: 1.35em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #d9272e;
  content: "";
}

.school-reasons-section {
  padding: 84px 0;
  background: #171718;
  color: #ffffff;
}

.school-reasons-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
}

.school-reasons-grid h2 {
  max-width: 540px;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  letter-spacing: -0.04em;
}

.school-reasons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  align-content: start;
}

.school-reasons-list li {
  padding: 18px 0;
  border-top: 1px solid #414143;
  color: #d2d2d3;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.school-closing-section {
  padding: 80px 0;
  background: #d9272e;
  color: #ffffff;
  text-align: center;
}

.school-closing-content {
  max-width: 900px;
}

.school-closing-section .section-label {
  color: #ffffff;
}

.school-closing-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.045em;
}

.school-closing-section p:not(.section-label) {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.school-closing-section .btn-primary {
  background: #111112;
}


/* =========================
   SERVICE DETAIL PAGES
========================= */

.service-page-hero {
  padding: 96px 0 18px;
  background: #111112;
  color: #ffffff;
}

.service-page-hero-content {
  max-width: 960px;
}

.service-page-hero h1 {
  max-width: 920px;
  margin-bottom: 12px;
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.75vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-page-hero-content > p:not(.section-label) {
  max-width: 760px;
  color: #c7c7c8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-samples-section {
  padding: 18px 0 70px;
  background: #f3f3f3;
}

.service-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.service-page-heading .section-label {
  flex-shrink: 0;
  margin-bottom: 9px;
}

.service-page-heading h2 {
  max-width: 720px;
  text-align: right;
}

.service-sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
}

.service-sample-image {
  aspect-ratio: 4 / 5;
  background-color: #272729;
  background-position: center;
  background-size: cover;
  border-bottom: 5px solid #d9272e;
}

.product-sample-gallery .service-sample-image {
  aspect-ratio: 1 / 1;
}

.sports-sample-one { background-image: url("images/sports-sample-1.jpg"); }
.sports-sample-two { background-image: url("images/sports-sample-2.jpg"); }
.sports-sample-three { background-image: url("images/sports-sample-3.jpg"); }
.portraits-sample-one { background-image: url("images/portraits-sample-1.jpg"); }
.portraits-sample-two { background-image: url("images/portraits-sample-2.jpg"); }
.portraits-sample-three { background-image: url("images/portraits-sample-3.jpg"); }
.products-sample-one { background-image: url("images/products-sample-1.jpg"); }
.products-sample-two { background-image: url("images/products-sample-2.jpg"); }
.products-sample-three { background-image: url("images/products-sample-3.jpg"); }

.service-offerings-section {
  padding: 88px 0;
  background: #ffffff;
}

.service-offerings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
}

.service-offerings-grid h2 {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.5vw, 4.3rem);
  letter-spacing: -0.04em;
}

.service-offerings-grid > div > p:last-child {
  max-width: 570px;
  color: #5c5c5c;
  font-size: 1.06rem;
  line-height: 1.8;
}

.service-offerings-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  align-content: start;
  list-style: none;
}

.service-offerings-list li {
  position: relative;
  padding: 18px 0 18px 23px;
  border-top: 1px solid #d3d3d3;
  color: #454545;
  font-weight: 700;
  line-height: 1.5;
}

.service-offerings-list li::before {
  position: absolute;
  top: 1.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #d9272e;
  content: "";
}

.service-page-cta {
  padding: 76px 0;
  background: #d9272e;
  color: #ffffff;
  text-align: center;
}

.service-page-cta .section-label {
  color: #ffffff;
}

.service-page-cta h2 {
  max-width: 850px;
  margin: 0 auto 32px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  letter-spacing: -0.045em;
}

.service-page-cta .btn-primary {
  background: #111112;
}


/* =========================
   PHOTO DAY TIPS PAGE
========================= */

.tips-hero {
  padding: 96px 0 18px;
  background: #111112;
  color: #ffffff;
}

.tips-hero-content {
  max-width: 940px;
}

.tips-hero h1 {
  max-width: 900px;
  margin-bottom: 12px;
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.75vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.tips-hero-content > p:last-child {
  max-width: 760px;
  color: #c7c7c8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.tips-content-section {
  padding: 80px 0 88px;
  background: #f3f3f3;
}

.tips-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 130px);
}

.tips-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.tips-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  letter-spacing: -0.04em;
}

.tips-intro > p:last-child {
  color: #626262;
  font-size: 1rem;
  line-height: 1.75;
}

.tips-groups {
  border-top: 3px solid #d9272e;
}

.tips-group {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid #cccccc;
}

.tips-number {
  padding-top: 5px;
  color: #d9272e;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tips-group h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
}

.tips-group ul {
  list-style: none;
}

.tips-group li {
  position: relative;
  padding: 9px 0 9px 22px;
  color: #535353;
  font-size: 1rem;
  line-height: 1.65;
}

.tips-group li::before {
  position: absolute;
  top: 1.15em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #d9272e;
  content: "";
}

.tips-cta {
  padding: 76px 0;
  background: #d9272e;
  color: #ffffff;
  text-align: center;
}

.tips-cta .section-label {
  color: #ffffff;
}

.tips-cta h2 {
  margin-bottom: 30px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.tips-cta .btn-primary {
  background: #111112;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-intro {
  padding: 96px 0 18px;
  background: #111112;
  color: #ffffff;
}

.contact-intro-content {
  max-width: 900px;
}

.contact-intro h1 {
  max-width: 850px;
  margin-bottom: 12px;
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.75vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-intro-content > p:last-child {
  max-width: 690px;
  color: #c7c7c8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-section {
  padding: 36px 0 64px;
  background: #f2f2f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.contact-details h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.contact-details-copy {
  max-width: 440px;
  color: #606060;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 48px;
  font-style: normal;
}

.contact-list div {
  padding-top: 20px;
  border-top: 1px solid #cccccc;
}

.contact-list span {
  display: block;
  margin-bottom: 7px;
  color: #d9272e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list p,
.contact-list a {
  color: #292929;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-list .contact-person {
  padding-top: 0;
  border-top: 0;
}

.contact-person + .contact-person {
  margin-top: 16px;
}

.contact-person strong {
  display: block;
  margin-bottom: 2px;
  color: #292929;
  font-size: 1rem;
}

.contact-person .contact-role {
  display: block;
  margin-bottom: 3px;
  color: #d9272e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-person a {
  color: #5c5c5c;
  font-weight: 500;
}

.contact-list a:hover {
  color: #d9272e;
}

.contact-form {
  padding: clamp(35px, 5vw, 62px);
  background: #ffffff;
  border-top: 4px solid #d9272e;
}

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

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #262626;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 0;
  background: #ffffff;
  color: #171717;
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 14px;
}

.form-field textarea {
  display: block;
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #d9272e;
  outline: 2px solid rgba(217,39,46,0.18);
  outline-offset: 1px;
}

.contact-submit {
  min-height: 52px;
  padding: 18px 36px;
  border: 0;
  border-radius: 3px;
  background: #d9272e;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.contact-form .visually-hidden {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-form .visually-hidden label {
  flex: 0 0 auto;
}

.contact-form .visually-hidden input {
  width: 180px;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid #c9c9c9;
}

.contact-submit:hover {
  background: #bd1f25;
}

.form-note {
  margin-top: 14px;
  color: #777777;
  font-size: 0.82rem;
}


/* =========================
   ONLINE ORDERING PAGE
========================= */

.order-page {
  background: #111112;
}

.order-main {
  padding-top: 92px;
}

.order-heading {
  padding: 18px 0;
  background: #111112;
  color: #ffffff;
  border-bottom: 1px solid #303032;
}

.order-heading-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.order-heading .section-label {
  margin-bottom: 8px;
}

.order-heading h1 {
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.order-external-link {
  flex-shrink: 0;
  padding: 13px 18px;
  border: 1px solid #68686a;
  color: #eeeeee;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.order-external-link:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.order-frame-section {
  height: calc(100vh - 285px);
  min-height: 650px;
  background: #ffffff;
}

.order-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.order-redirect {
  min-height: 55vh;
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.order-redirect h2 {
  margin-bottom: 18px;
}

.order-redirect p {
  color: #666666;
}

.order-redirect a {
  color: #d9272e;
  font-weight: 800;
}

.order-footer {
  padding-top: 0;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1180px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    width: 100%;
    margin-left: 0;
    background: #0d0d0e;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 25px 5%;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(7, 7, 8, 0.94) 0%,
        rgba(7, 7, 8, 0.8) 58%,
        rgba(7, 7, 8, 0.38) 100%
      ),
      linear-gradient(0deg, rgba(7, 7, 8, 0.44), transparent 48%);
  }

  .legacy-section {
    padding: 68px 0;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legacy-mark {
    max-width: 440px;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel-sports .feature-image {
    order: 0;
  }

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

  .trust-grid div {
    border: 0;
    border-bottom: 1px solid #333;
  }

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

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

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

  .about-year {
    max-width: 500px;
  }

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

  .about-hero {
    padding: 96px 0 18px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-hero-year {
    max-width: 440px;
  }

  .story-section {
    padding: 68px 0 80px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .story-nav {
    position: static;
    max-width: 500px;
  }

  .story-content {
    max-width: 780px;
  }

  .schools-hero {
    padding: 96px 0 18px;
  }

  .school-gallery-section {
    padding: 16px 0 54px;
  }

  .school-services-section,
  .school-reasons-section {
    padding: 68px 0;
  }

  .school-section-heading {
    display: block;
  }

  .school-section-heading h2 {
    max-width: 720px;
    text-align: left;
  }

  .school-services-grid,
  .school-reasons-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .school-service-group {
    max-width: 720px;
  }

  .service-page-hero {
    padding: 96px 0 18px;
  }

  .service-samples-section {
    padding: 16px 0 54px;
  }

  .service-page-heading {
    display: block;
  }

  .service-page-heading h2 {
    max-width: 720px;
    text-align: left;
  }

  .service-offerings-section {
    padding: 68px 0;
  }

  .service-offerings-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tips-hero {
    padding: 96px 0 18px;
  }

  .tips-content-section {
    padding: 68px 0;
  }

  .tips-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .tips-intro {
    position: static;
    max-width: 680px;
  }

  .contact-intro {
    padding: 104px 0 24px;
  }

  .contact-section {
    padding: 68px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-details {
    max-width: 620px;
  }
}


@media (max-width: 550px) {

  .logo img {
    height: 58px;
    max-width: 160px;
  }

  .section {
    padding: 56px 0;
  }

  .about-hero {
    padding: 84px 0 16px;
  }

  .about-hero-content h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .about-hero-content > p:last-child {
    font-size: 0.85rem;
  }

  .story-section {
    padding: 56px 0 64px;
  }

  .story-layout {
    gap: 50px;
  }

  .story-chapter {
    padding-bottom: 36px;
  }

  .story-chapter + .story-chapter {
    padding-top: 36px;
  }

  .story-chapter > p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .story-chapter blockquote {
    margin: 38px 0;
    padding-left: 24px;
  }

  .about-cta {
    padding: 58px 0;
  }

  .schools-hero {
    padding: 84px 0 16px;
  }

  .schools-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .schools-hero-content > p:last-child {
    font-size: 0.85rem;
  }

  .school-gallery-section {
    padding: 14px 0 45px;
  }

  .school-services-section,
  .school-reasons-section,
  .school-closing-section {
    padding: 56px 0;
  }

  .school-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .school-services-grid,
  .school-reasons-grid {
    gap: 55px;
  }

  .school-reasons-list {
    grid-template-columns: 1fr;
  }

  .service-page-hero {
    padding: 84px 0 16px;
  }

  .service-page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .service-page-hero-content > p:not(.section-label) {
    font-size: 0.85rem;
  }

  .service-samples-section {
    padding: 14px 0 45px;
  }

  .service-sample-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-offerings-section,
  .service-page-cta {
    padding: 56px 0;
  }

  .service-offerings-grid {
    gap: 50px;
  }

  .service-offerings-list {
    grid-template-columns: 1fr;
  }

  .tips-hero {
    padding: 84px 0 16px;
  }

  .tips-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .tips-hero-content > p:last-child {
    font-size: 0.85rem;
  }

  .tips-content-section,
  .tips-cta {
    padding: 56px 0;
  }

  .tips-layout {
    gap: 42px;
  }

  .tips-group {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 30px 0;
  }

  .legacy-section {
    padding: 56px 0;
  }

  .legacy-grid {
    gap: 42px;
  }

  .legacy-mark {
    padding: 34px 0 30px;
  }

  .legacy-content > p:last-child {
    font-size: 1rem;
  }

  .feature-grid {
    gap: 25px;
  }

  .feature-content {
    padding: 36px 26px 40px;
  }

  .feature-content ul {
    grid-template-columns: 1fr;
  }

  .supporting-card-grid {
    margin-top: 25px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 3.3rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .trust-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    padding: 84px 0 16px;
  }

  .contact-intro h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .contact-intro-content > p:last-child {
    font-size: 0.85rem;
  }

  .contact-section {
    padding: 28px 0 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 32px 24px 36px;
  }

  .order-heading {
    padding: 16px 0;
  }

  .order-heading-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .order-frame-section {
    height: 720px;
    min-height: 0;
  }

.service-card {
    padding: 30px;
  }
}

/* =========================
   CUSTOM PRODUCT ORDERING
========================= */

.cart-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  background: #d9272e;
  color: #ffffff;
  font-size: 0.7rem;
  line-height: 21px;
  text-align: center;
}

.custom-catalog-section,
.cart-section {
  padding: 64px 0 88px;
  background: #f3f3f3;
}

.custom-catalog-section {
  padding: 32px 0 60px;
}

.catalog-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.catalog-intro h2 {
  margin-bottom: 14px;
}

.custom-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 208px));
  gap: 24px;
}

.catalog-category-group + .catalog-category-group {
  margin-top: 44px;
}

.catalog-category-group > h3 {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #d9272e;
  font-size: 1.45rem;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 208px));
  gap: 24px;
}

.catalog-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.catalog-product-placeholder:hover {
  transform: none;
  box-shadow: none;
}

.catalog-product-placeholder {
  opacity: 0.72;
}

.catalog-product-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-product-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}

.catalog-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.75rem;
  border-top: 1px solid #eeeeee;
}

.catalog-product-copy .product-price {
  margin-top: auto;
}

.catalog-product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
  border-top: 1px solid #eeeeee;
}

.catalog-product-info h2 {
  margin: 5px 0 10px;
  min-height: 2.3em;
  font-size: 1.05rem;
  line-height: 1.15;
}

.catalog-product-info .product-price {
  margin: auto 0 12px;
}

.catalog-product-action {
  color: #b51f25;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.custom-product-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dedede;
}

.custom-product-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.custom-product-body {
  padding: 26px;
}

.custom-product-body h2 {
  margin: 4px 0 12px;
  font-size: 1.55rem;
}

.product-category,
.cart-sku {
  color: #c22127;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-price {
  margin: 16px 0;
  color: #111112;
  font-size: 1.35rem;
  font-weight: 900;
}

#banner-price {
  color: #d9272e;
}

.product-personalization {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.product-personalization label,
.cart-item label {
  display: grid;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-personalization input,
.product-personalization select,
.product-personalization textarea,
.cart-quantity {
  width: 100%;
  padding: 10px;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  font: inherit;
  text-transform: none;
}

.upload-requirements {
  margin-top: 8px;
  color: #666666;
  font-size: 0.75rem;
  line-height: 1.45;
}

.product-detail-link {
  display: inline-block;
  margin: -4px 0 18px;
  color: #b51f25;
  font-weight: 800;
  text-decoration: underline;
}

.product-page {
  padding: 112px 0 56px;
  background: #f3f3f3;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
}

.product-image {
  position: sticky;
  top: 122px;
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.product-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}

.product-details {
  padding: 24px;
  background: #ffffff;
}

.product-details > h1 {
  margin: 4px 0 8px;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.product-description {
  margin-bottom: 18px;
  color: #555555;
  font-size: 0.95rem;
}

.photo-guidance {
  padding: 14px;
  margin-bottom: 16px;
  background: #fff5d8;
  border-left: 4px solid #d9a400;
  font-size: 0.88rem;
}

.photo-guidance p {
  margin-top: 4px;
}

.golf-photo-preview {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
  padding: 14px;
  background: #f3f3f3;
}

.golf-photo-preview[hidden] {
  display: none;
}

.golf-photo-preview img {
  grid-row: span 2;
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #dddddd;
}

.golf-photo-preview button {
  width: max-content;
  border: 0;
  background: none;
  color: #b51f25;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.product-upload,
.product-details .product-personalization,
.product-notes {
  padding: 16px 0;
  border-top: 1px solid #dedede;
}

.product-upload h2,
.product-details .product-personalization h2 {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.product-upload > p {
  margin-bottom: 10px;
  color: #666666;
}

.product-upload .btn-secondary {
  border: 2px solid #d9272e;
  background: #ffffff;
  color: #b51f25;
}

.product-upload .btn-secondary:hover {
  background: #d9272e;
  color: #ffffff;
}

#uploaded-photo-preview {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 6px 12px;
  margin-top: 12px;
  padding: 12px;
  background: #f3f3f3;
}

#uploaded-photo-preview[hidden] {
  display: none;
}

#uploaded-photo-preview h3 {
  grid-column: 1 / -1;
  font-size: 1rem;
}

#uploaded-photo-thumbnail {
  grid-row: span 2;
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #dddddd;
}

#replace-photo-button {
  width: max-content;
  border: 0;
  background: none;
  color: #b51f25;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.product-notes label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-notes textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c8c8c8;
  font: inherit;
}

.product-details > .btn-primary {
  width: 100%;
}

.cart-choice-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}

.cart-choice-overlay[hidden] {
  display: none;
}

.product-personalization label {
  display: block;
  margin: 12px 0 5px;
  font-weight: 800;
}

.product-personalization select {
  width: 100%;
  padding: 10px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font: inherit;
}

.fixed-print-finish {
  margin-top: 14px;
  padding: 10px 12px;
  background: #f3f3f3;
}

.print-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 120px));
  gap: 10px;
  margin-top: 12px;
}

.print-preview-grid figure { padding: 8px; background: #f3f3f3; }
.print-preview-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #ddd; }
.print-preview-grid figcaption { margin: 5px 0; overflow: hidden; font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.print-preview-grid button { border: 0; background: none; color: #b51f25; font-weight: 800; cursor: pointer; }

.crop-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, .82);
}

.crop-overlay[hidden] { display: none; }
.crop-dialog { width: min(720px, 100%); max-height: 95vh; overflow: auto; padding: 24px; background: #fff; }
.crop-stage { display: grid; place-items: center; margin: 14px 0; padding: 10px; background: #222; }
.crop-stage canvas { display: block; max-width: 100%; max-height: 58vh; border: 2px solid #fff; cursor: move; touch-action: none; }
.crop-dialog > label { display: block; margin-top: 12px; font-weight: 800; }
.crop-dialog input[type="range"] { width: 100%; }
.crop-help { color: #666; font-size: .85rem; }
.crop-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.crop-actions button { min-width: 170px; min-height: 54px; padding: 14px 24px; border: 0; border-radius: 14px; color: #fff; background: #b51f25; box-shadow: 0 5px 14px rgba(181, 31, 37, .28); font-size: 1rem; font-weight: 800; cursor: pointer; }
.crop-actions button:hover { background: #92181d; transform: translateY(-1px); }
.crop-actions button:focus-visible { outline: 3px solid #111; outline-offset: 3px; }
@media (max-width: 520px) { .crop-actions { display: grid; grid-template-columns: 1fr; } .crop-actions button { width: 100%; } }

.cart-choice-dialog {
  width: min(480px, 100%);
  padding: 34px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cart-choice-dialog h2 {
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.cart-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cart-choice-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  text-align: center;
}

.cart-choice-secondary {
  border: 2px solid #111112;
  color: #111112;
  background: #ffffff;
}

.cart-choice-secondary:hover {
  background: #111112;
  color: #ffffff;
}

/* =========================
   CHECKOUT AND CONFIRMATION
========================= */

.account-page { min-height: 65vh; padding: 64px 20px; background: #f3f3f3; }
.policy-page { padding: 64px 20px 84px; background: #f3f3f3; }
.policy-content { width: min(900px, 100%); padding: clamp(24px, 5vw, 54px); background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.policy-content h1 { margin-bottom: 24px; }
.policy-content h2 { margin: 34px 0 10px; font-size: clamp(1.3rem, 3vw, 1.75rem); }
.policy-content p, .policy-content address { margin-bottom: 14px; color: #454545; line-height: 1.75; }
.footer-bottom a { color: inherit; text-decoration: underline; }
.account-card, .customer-order-detail { width: min(760px, 100%); padding: 32px; margin: 0 auto; background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.account-card form { display: grid; gap: 8px; margin: 24px 0; }
.account-card label { margin-top: 8px; font-weight: 800; }
.account-card input:not([type="checkbox"]) { width: 100%; padding: 12px; border: 1px solid #bbb; font: inherit; }
.account-card .btn { margin-top: 14px; }
.account-check { display: flex; align-items: center; gap: 8px; }
.account-orders { width: min(1050px, 100%); margin: 0 auto; }
.account-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; margin-bottom: 28px; }
.account-heading .section-label { padding: 8px 0; }
.customer-order-list { display: grid; gap: 16px; }
.customer-order-card { display: flex; align-items: center; justify-content: space-between; gap: 11px; padding: 13.25px; background: #fff; }
.customer-order-card h2 { margin: 6px 0; font-size: 21.6px; }
.customer-order-card > div:last-child { display: grid; gap: 6px; text-align: right; }
.order-status { display: inline-block; padding: 5px 10px; border-radius: 999px; color: #fff; background: #b51f25; font-size: .78rem; font-weight: 900; text-transform: capitalize; }
.customer-order-detail { width: 100%; margin-top: 18px; }
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.order-detail-grid > div, .customer-order-item, .customer-update { padding: 18px; background: #f5f5f5; }
.customer-order-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.customer-order-item small { display: block; margin-top: 5px; }
.customer-order-item img { width: 150px; height: 150px; object-fit: contain; background: #ddd; }
.pickup-ready { padding: 12px; border-left: 4px solid #b51f25; background: #fff; }
.customer-update { margin-bottom: 10px; }
.customer-update time, .status-timeline time { display: block; color: #666; font-size: .82rem; }
.status-timeline { display: grid; gap: 10px; padding-left: 22px; }
.order-total { display: flex; justify-content: flex-end; gap: 30px; padding-top: 18px; border-top: 2px solid #222; font-size: 1.25rem; }
@media (max-width: 650px) { .customer-order-card, .customer-order-item, .account-heading { align-items: flex-start; flex-direction: column; } .customer-order-card > div:last-child { text-align: left; } .order-detail-grid { grid-template-columns: 1fr; } .customer-order-item img { width: 100%; height: auto; max-height: 300px; } }

.checkout-section {
  padding: 30px 0 50px;
  background: #f3f3f3;
}

.checkout-hero {
  padding: 88px 0 18px;
}

.checkout-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
}

.checkout-hero .service-page-hero-content > p:last-child {
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 24px;
}

.checkout-form {
  padding: 22px;
  background: #ffffff;
}

.checkout-form fieldset {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
}

.checkout-form legend {
  width: 100%;
  padding-bottom: 7px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dedede;
  font-size: 1.1rem;
  font-weight: 900;
}

.checkout-fields,
.checkout-fields.two-column,
.checkout-fields .three-column {
  display: grid;
  gap: 11px;
}

.checkout-fields.two-column {
  grid-template-columns: 1fr 1fr;
}

.checkout-fields .three-column {
  grid-template-columns: 1fr 100px 120px;
}

.checkout-form label {
  display: grid;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.required-mark {
  color: #d9272e;
  font-size: 1rem;
  line-height: 1;
}

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

.banner-dimensions fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid #d7d7d7;
}

.banner-dimensions legend {
  padding: 0 6px;
  font-weight: 700;
}

.banner-dimensions input {
  width: 100%;
}

@media (max-width: 600px) {
  .banner-dimensions {
    grid-template-columns: 1fr;
  }
}

.checkout-form input {
  width: 100%;
  padding: 8px 9px;
  border: 1px solid #c8c8c8;
  font: inherit;
}

.checkout-form .fulfillment-options {
  display: grid;
  gap: 8px;
}

.checkout-form .fulfillment-options legend {
  margin-bottom: 6px;
}

.checkout-form .fulfillment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-form .fulfillment-options input[type="radio"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}

.checkout-form .same-address {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -4px 0 18px;
}

.checkout-form .same-address input {
  width: auto;
}

.checkout-form .policy-confirmation {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.checkout-form .policy-confirmation input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 1px 0 0;
}

.checkout-form .policy-confirmation span {
  display: block;
}

.checkout-notice {
  padding: 10px 12px;
  margin-bottom: 14px;
  background: #fff5d8;
  border-left: 4px solid #d9a400;
  font-size: 0.8rem;
}

.checkout-form > .btn {
  padding: 11px 18px;
  font-size: 0.85rem;
}

.checkout-layout .cart-summary {
  padding: 18px;
  font-size: 0.88rem;
}

.checkout-layout .cart-summary h2 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.checkout-layout .cart-summary .checkout-summary-items {
  gap: 0.6rem;
  padding-bottom: 0.7rem;
}

.checkout-layout .checkout-summary-item {
  grid-template-columns: 52px 1fr;
  gap: 0.6rem;
}

.checkout-layout .checkout-summary-item img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
}

.checkout-layout .cart-summary > div {
  padding: 10px 0;
}

.checkout-layout .cart-summary p {
  margin: 11px 0;
  font-size: 0.78rem;
}

.confirmation-page {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 140px 0 70px;
  background: #f3f3f3;
}

.confirmation-card {
  max-width: 720px;
  padding: 48px;
  background: #ffffff;
  text-align: center;
}

.confirmation-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

#confirmation-order-number {
  display: block;
  margin: 18px 0;
  color: #d9272e;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.confirmation-card .btn {
  margin-top: 24px;
}

@media (max-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-image {
    position: static;
    max-width: 360px;
  }
}

@media (max-width: 550px) {
  .product-page {
    padding: 88px 0 42px;
  }

  .product-layout {
    width: 100%;
    gap: 0;
  }

  .product-details {
    padding: 22px 5%;
  }

  #uploaded-photo-preview {
    grid-template-columns: 86px 1fr;
  }

  #uploaded-photo-thumbnail {
    width: 86px;
    height: 86px;
  }

  .cart-choice-actions {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    padding: 42px 0 56px;
  }

  .checkout-form {
    padding: 18px 16px;
  }

  .checkout-fields.two-column,
  .checkout-fields .three-column {
    grid-template-columns: 1fr;
  }

  .confirmation-card {
    padding: 34px 22px;
  }
}

.photo-upload-area {
  margin-bottom: 14px;
}

.photo-preview {
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.photo-preview:not([hidden]) {
  display: flex;
}

.photo-preview img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.custom-product-body .btn {
  width: 100%;
}

.product-message {
  min-height: 25px;
  margin-top: 8px;
  color: #a71e23;
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 34px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 145px minmax(150px, 1fr) 82px 90px auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid #dedede;
}

.cart-product-image,
.cart-uploaded-image {
  margin: 0;
  min-width: 0;
  text-align: center;
}

.cart-product-image img,
.cart-uploaded-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  background: #f3f3f3;
}

.cart-product-image img {
  object-fit: contain;
}

.cart-uploaded-image {
  padding-left: 14px;
  border-left: 1px solid #dedede;
}

.cart-uploaded-image img {
  object-fit: contain;
  background: #f3f3f3;
}

.cart-uploaded-preview {
  position: relative;
}

.cart-image-count {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(17, 17, 18, 0.82);
  color: #ffffff;
  font-size: 0.67rem;
  font-weight: 800;
}

.cart-product-image figcaption,
.cart-uploaded-image figcaption,
.cart-image-empty small {
  margin-top: 4px;
  color: #666666;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.cart-image-empty {
  display: grid;
  place-content: center;
  aspect-ratio: 1 / 1;
  color: #777777;
  background: #f3f3f3;
  font-size: 0.72rem;
}

.cart-image-empty small {
  display: block;
}

.cart-item h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.cart-item-details > p:not(.cart-sku) {
  font-size: 0.88rem;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: #b51f25;
  font-weight: 800;
  cursor: pointer;
}

.cart-summary {
  padding: 28px;
  background: #111112;
  color: #ffffff;
}

.cart-summary h2 {
  margin-bottom: 24px;
  font-size: 1.65rem;
}

.cart-summary .checkout-summary-items {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(32, 49, 39, 0.15);
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.checkout-summary-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 8px;
  border: 1px solid rgba(32, 49, 39, 0.15);
  background: #f5f3ed;
}

.checkout-summary-item div,
.checkout-summary-item span,
.checkout-summary-item small {
  display: block;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #424244;
  border-bottom: 1px solid #424244;
}

.cart-summary p {
  margin: 16px 0;
  color: #c7c7c8;
  font-size: 0.86rem;
}

.cart-summary .btn {
  width: 100%;
  margin-bottom: 14px;
}

.cart-summary .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-summary > a {
  display: block;
  text-align: center;
  text-decoration: underline;
}

.empty-cart {
  padding: 45px;
  background: #ffffff;
}

.empty-cart p {
  margin: 12px 0 22px;
}

@media (max-width: 900px) {
  .catalog-category-grid,
  .custom-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 208px));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 115px 135px minmax(150px, 1fr) 80px 90px;
  }

  .cart-remove {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 550px) {
  .custom-catalog-section,
  .cart-section {
    padding: 48px 0 58px;
  }

  .custom-catalog-section {
    padding: 28px 0 44px;
  }

  .catalog-category-grid,
  .custom-product-grid {
    grid-template-columns: minmax(0, 208px);
  }

  .cart-item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 12px;
    padding: 14px;
  }

  .cart-uploaded-image {
    padding-left: 12px;
  }

  .cart-item-details {
    grid-column: 1 / -1;
  }

  .cart-item > .cart-item-quantity,
  .cart-item > .cart-item-price,
  .cart-remove {
    grid-column: auto;
    align-self: center;
  }

  .cart-item > .cart-item-quantity {
    grid-column: 1;
  }

  .cart-item > .cart-item-price {
    grid-column: 2;
    justify-self: end;
  }

  .cart-remove {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .cart-quantity {
    max-width: 90px;
  }
}
