/* Limitless Graphix September 2026 cache-busted launch stylesheet. */
:root {
  --blue: #00aeef;
  --blue-dark: #0078ad;
  --blue-deep: #005f89;
  --warm: #f47b20;
  --ink: #171717;
  --charcoal: #242424;
  --muted: #626262;
  --cream: #f7f4ef;
  --line: #dedbd5;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.13);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

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

.section { padding: 100px 0; }
.section-compact { padding: 72px 0; }
.service-options { padding: 70px 0 78px; }
.service-options h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.service-options .section-intro { margin-bottom: 34px; }
.section-cream { background: var(--cream); }
.section-dark { color: var(--white); background: var(--ink); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(2.65rem, 6vw, 5.7rem); }
h2 { max-width: 800px; margin-bottom: 22px; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin-bottom: 12px; font-size: 1.34rem; }

.lede { max-width: 760px; color: #e8e8e8; font-size: clamp(1.06rem, 2vw, 1.28rem); }
.section-intro { max-width: 760px; margin-bottom: 48px; color: var(--muted); font-size: 1.08rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue-dark); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-deep); }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.6); background: rgba(17, 17, 17, 0.22); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--white); background: rgba(17, 17, 17, 0.5); }
.button-dark { color: var(--white); background: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: rgba(17, 17, 17, 0.97);
}

.header-inner { display: flex; min-height: 82px; align-items: center; gap: 24px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: auto; height: 48px; }

.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; margin-left: 8px; }
.header-social { display: flex; flex: 0 0 auto; gap: 6px; }
.header-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(0,120,173,.3);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.header-social a:hover, .header-social a:focus-visible { border-color: var(--warm); background: var(--warm); transform: translateY(-2px); }
.header-social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-social .social-icon-fill { fill: currentColor; stroke: none; }

.header-cart {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: #fff;
  background: #1d1d1d;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,174,239,.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.header-cart:hover, .header-cart:focus-visible { border-color: var(--blue); background: var(--blue-dark); transform: translateY(-2px); }
.header-cart svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid #171717;
  border-radius: 999px;
  color: #111;
  background: var(--warm);
  font-size: .66rem;
  font-weight: 900;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.main-nav { display: flex; margin-left: auto; align-items: center; gap: 4px; }
.main-nav > a,
.nav-group > summary {
  padding: 10px 11px;
  border-radius: 8px;
  color: #f7f7f7;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-group > summary:hover,
.nav-group > summary:focus-visible { background: rgba(255,255,255,.09); }

.nav-group { position: relative; }
.nav-group > summary { list-style: none; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { margin-left: 5px; color: var(--blue); content: "▾"; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  width: 280px;
  padding: 10px;
  border: 1px solid #3a3a3a;
  border-radius: 14px;
  background: #202020;
  box-shadow: var(--shadow);
}

.nav-dropdown a { padding: 10px 12px; border-radius: 8px; color: #f2f2f2; font-size: 0.88rem; text-decoration: none; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: #313131; }
.nav-cta { margin-left: 8px; color: var(--white) !important; background: var(--blue-dark); }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--blue-deep) !important; }

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.91) 0%, rgba(10,10,10,.74) 49%, rgba(10,10,10,.2) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(244,123,32,.15);
  border-radius: 50%;
  content: "";
}

.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 110px 0 96px; }
.hero h1 span { color: var(--blue); }
.hero .eyebrow,
.service-hero .eyebrow,
.section-dark .eyebrow,
.quote-panel .eyebrow,
.side-card .eyebrow { color: var(--blue); }

.proof-strip { position: relative; z-index: 2; margin-top: -58px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.proof-item { padding: 26px 30px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.proof-item span { color: var(--muted); font-size: 0.9rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 390px; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--charcoal); box-shadow: 0 9px 28px rgba(15,15,15,.11); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,.88) 100%); content: ""; }
.service-card-content { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 28px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.service-card p { margin: 0 0 15px; color: #e2e2e2; font-size: 0.92rem; line-height: 1.45; }
.text-link { color: var(--blue); font-size: .9rem; font-weight: 850; text-decoration: none; }
.text-link::after { margin-left: 6px; content: "→"; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-media::before { position: absolute; z-index: -1; top: -22px; left: -22px; width: 58%; height: 58%; border-radius: var(--radius); background: var(--blue); content: ""; }
.split-copy p { color: var(--muted); }

.owner-note {
  display: inline-flex;
  margin-top: 14px;
  padding: 9px 13px;
  border: 1px solid #ddd6cb;
  border-radius: 999px;
  color: #4c4944;
  background: #fff;
  font-size: .86rem;
  font-weight: 750;
}

.project-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; grid-template-rows: 260px 260px; gap: 14px; }
.project { position: relative; overflow: hidden; border-radius: 16px; background: #ddd; }
.project:first-child { grid-row: 1 / 3; }
.project:nth-child(2) { grid-column: 2 / 4; }
.project img { width: 100%; height: 100%; object-fit: cover; }
.project span { position: absolute; bottom: 14px; left: 14px; padding: 7px 11px; border-radius: 999px; color: var(--white); background: rgba(0,0,0,.74); font-size: .78rem; font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: steps; }
.process-step { position: relative; padding-top: 63px; counter-increment: steps; }
.process-step::before { position: absolute; top: 0; left: 0; display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-dark); content: counter(steps); font-weight: 850; }
.process-step::after { position: absolute; top: 23px; left: 60px; width: calc(100% - 50px); height: 1px; background: #454545; content: ""; }
.process-step:last-child::after { display: none; }
.process-step p { color: #c5c5c5; font-size: .94rem; }

.city-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.city-list li { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #4b4b4b; background: #fff; font-size: .88rem; font-weight: 750; }

.quote-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; padding: clamp(28px, 6vw, 70px); border-radius: 28px; color: var(--white); background: var(--charcoal); }
.quote-panel h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.quote-details { display: grid; gap: 14px; margin-top: 30px; }
.quote-detail { color: #d7d7d7; font-size: .94rem; }
.quote-detail strong { display: block; color: var(--white); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: #e8e8e8; font-size: .79rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #555; border-radius: 10px; color: var(--white); background: #333; }
.form-field select option { color: #111; background: #fff; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(0,174,239,.28); border-color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px !important; }

.secondary-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.secondary-services a { padding: 22px; border: 1px solid var(--line); border-radius: 14px; font-size: .92rem; font-weight: 800; text-decoration: none; transition: border-color 160ms ease, transform 160ms ease; }
.secondary-services a:hover, .secondary-services a:focus-visible { border-color: var(--blue); transform: translateY(-2px); }

.site-footer { padding: 62px 0 26px; color: #d5d5d5; background: #111; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 60px; }
.footer-brand img { width: auto; height: 52px; margin-bottom: 20px; }
.footer-brand p { max-width: 420px; color: #aaa; font-size: .92rem; }
.footer-title { margin-bottom: 16px; color: var(--white); font-size: .88rem; font-weight: 850; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c8c8c8; font-size: .9rem; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid #333; color: #888; font-size: .78rem; }

.service-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111;
  isolation: isolate;
}

.service-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.48) 47%, rgba(8,8,8,.10) 100%);
  content: "";
}

.service-hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 110px 0 80px; }
.service-hero h1 { font-size: clamp(2.6rem, 5.6vw, 5.2rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #d0d0d0; font-size: .78rem; font-weight: 750; }
.breadcrumbs a { color: var(--white); text-decoration: none; }
.breadcrumbs span::before { margin-right: 8px; color: var(--blue); content: "/"; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.feature-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.feature-icon { display: grid; width: 42px; height: 42px; margin-bottom: 20px; place-items: center; border-radius: 12px; color: var(--white); background: var(--blue-dark); font-weight: 900; }

.info-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(38px, 7vw, 80px); align-items: start; }
.info-copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; color: var(--blue-dark); content: "✓"; font-weight: 900; }
.side-card { padding: 28px; border-radius: 18px; color: var(--white); background: var(--charcoal); box-shadow: var(--shadow); }
.side-card h3 { margin-bottom: 16px; }
.side-card p, .side-card li { color: #d5d5d5; font-size: .93rem; }
.side-card ul { display: grid; gap: 8px; padding-left: 20px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 16px; background: #ddd; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; }

.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: white; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.pricing-table th { color: var(--white); background: var(--charcoal); font-size: .82rem; text-transform: uppercase; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-note { margin-top: 14px; color: var(--muted); font-size: .87rem; }

.faq-list { max-width: 900px; }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding-right: 32px; cursor: pointer; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 4px; color: var(--blue-dark); content: "+"; font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 14px 32px 0 0; color: var(--muted); }

.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 36px; border-radius: 20px; color: var(--white); background: var(--charcoal); }
.inline-cta h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.inline-cta p { margin-bottom: 0; color: #cfcfcf; }

.service-hero-short { min-height: 500px; }
.content-narrow { width: min(100%, 820px); margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: -4px 0 32px; color: var(--muted); font-size: .88rem; font-weight: 700; }
.article-body { font-size: 1.05rem; }
.article-body h2 { margin-top: 54px; font-size: clamp(1.75rem, 3vw, 2.55rem); }
.article-body h3 { margin-top: 34px; }
.article-body p, .article-body li { color: #424242; }
.article-body ul, .article-body ol { display: grid; gap: 10px; padding-left: 24px; }
.article-callout { margin: 40px 0; padding: 26px 28px; border-left: 5px solid var(--blue); border-radius: 0 14px 14px 0; background: var(--cream); }
.article-callout strong { display: block; margin-bottom: 5px; color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; color: inherit; background: var(--white); text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.blog-card:hover, .blog-card:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-copy { display: block; padding: 25px; }
.blog-card h2, .blog-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.blog-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.policy-list { max-width: none; }

.shop-hero { min-height: 520px; }
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.shop-grid-three { grid-template-columns: repeat(3, 1fr); }
.shop-grid-three { align-items: stretch; }
.shop-grid-three .shop-card { height: 100%; grid-template-columns: 1fr; grid-template-rows: 260px 1fr; }
.shop-grid-three .shop-card-media { height: 260px; min-height: 0; }
.shop-grid-three .shop-card-media img { height: 260px; }
.shop-grid-three .shop-card-copy { min-height: 290px; }
.shop-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; color: inherit; background: var(--white); text-decoration: none; box-shadow: 0 8px 28px rgba(17,17,17,.08); }
.shop-card-media { min-height: 300px; background: #ddd; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.shop-card-copy p { color: var(--muted); }
.shop-card-price { margin-top: auto; color: var(--blue-dark); font-size: 1.05rem; font-weight: 900; }
.product-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(34px, 6vw, 72px); align-items: start; }
.product-gallery { min-width: 0; }
.product-main { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }
.product-main img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.product-thumb { padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 11px; background: var(--cream); cursor: pointer; }
.product-thumb.active { border-color: var(--blue-dark); }
.product-thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-panel { position: sticky; top: 110px; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.product-panel h1 { margin-bottom: 12px; font-size: clamp(2.25rem, 4vw, 3.65rem); }
.product-price { margin: 18px 0; font-size: 1.8rem; font-weight: 900; }
.product-intro { color: var(--muted); }
.product-controls { display: grid; gap: 20px; margin-top: 26px; }
.product-controls label { display: block; margin-bottom: 7px; font-size: .83rem; font-weight: 850; }
.pattern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.pattern-swatch { position: relative; padding: 0; overflow: hidden; border: 3px solid transparent; border-radius: 12px; background: #eee; cursor: pointer; }
.pattern-swatch[aria-pressed="true"] { border-color: var(--blue-dark); box-shadow: 0 0 0 2px rgba(0,174,239,.18); }
.pattern-swatch img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pattern-swatch span { position: absolute; right: 3px; bottom: 3px; left: 3px; padding: 5px 4px; border-radius: 6px; color: #fff; background: rgba(0,0,0,.72); font-size: .58rem; font-weight: 800; line-height: 1.1; text-align: center; }
.quantity-field { width: 100px; min-height: 48px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; }
.add-message { min-height: 24px; margin: 10px 0 0; color: #17763c; font-size: .88rem; font-weight: 800; }
.micro-copy { color: var(--muted); font-size: .82rem; }
.cart-link { display: inline-flex !important; align-items: center; gap: 6px; }
.cart-count { display: inline-grid; min-width: 21px; height: 21px; padding: 0 5px; place-items: center; border-radius: 99px; color: #111; background: var(--blue); font-size: .68rem; font-weight: 900; }
.cart-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: start; }
.cart-lines { display: grid; gap: 13px; }
.cart-line { display: grid; grid-template-columns: 88px 1fr 78px auto; gap: 16px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.cart-thumb { width: 88px; height: 88px; border-radius: 10px; object-fit: cover; background: #eee; }
.cart-title { margin: 0 0 4px; font-weight: 900; }
.cart-meta { margin: 0; color: var(--muted); font-size: .82rem; }
.cart-qty { width: 72px; min-height: 42px; padding: 8px; border: 1px solid var(--line); border-radius: 9px; }
.cart-line-actions { text-align: right; }
.cart-remove { margin-top: 7px; padding: 0; border: 0; color: #8b2828; background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.cart-summary { position: sticky; top: 110px; padding: 28px; border-radius: 18px; color: #fff; background: var(--charcoal); }
.cart-summary h2 { font-size: 1.85rem; }
.cart-totals { display: grid; gap: 10px; margin: 22px 0; }
.cart-total-line { display: flex; justify-content: space-between; gap: 20px; color: #d2d2d2; }
.cart-total-line.total { padding-top: 14px; border-top: 1px solid #555; color: #fff; font-size: 1.15rem; font-weight: 900; }
.delivery-options { display: grid; gap: 9px; margin: 20px 0; }
.delivery-option { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid #555; border-radius: 10px; cursor: pointer; }
.delivery-option input { margin-top: 5px; }
.delivery-option small { display: block; color: #bdbdbd; }
.cart-empty { padding: 40px; border: 1px dashed #bbb; border-radius: 15px; text-align: center; }
.cart-error { display: none; color: #ffb5ad; font-size: .85rem; font-weight: 800; }
.cart-coupon { margin-top: 18px; padding-top: 18px; border-top: 1px solid #555; }
.cart-coupon > label { display: block; margin-bottom: 8px; color: #fff; font-size: .82rem; font-weight: 850; }
.coupon-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.coupon-row input { width: 100%; min-width: 0; min-height: 44px; padding: 10px 12px; border: 1px solid #666; border-radius: 9px; color: #111; background: #fff; font: inherit; text-transform: uppercase; }
.coupon-row input:focus { border-color: var(--blue); outline: 3px solid rgba(0,174,239,.22); }
.coupon-apply, .coupon-remove { min-height: 44px; padding: 8px 13px; border: 1px solid var(--blue); border-radius: 9px; color: #fff; background: var(--blue-dark); font-size: .78rem; font-weight: 850; cursor: pointer; }
.coupon-remove { border-color: #777; background: transparent; }
.coupon-apply:hover, .coupon-apply:focus-visible { border-color: var(--warm); background: var(--warm); }
.coupon-remove:hover, .coupon-remove:focus-visible { border-color: #aaa; background: rgba(255,255,255,.08); }
.coupon-message { min-height: 19px; margin: 7px 0 0; color: #c9c9c9; font-size: .77rem; font-weight: 750; }
.coupon-message.is-success, .cart-discount-line { color: #9ce6b7; }
.coupon-message.is-error { color: #ffb5ad; }
.shop-note { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); }

/* O'Connor Football Team Store */
.team-store-hero { position: relative; overflow: hidden; min-height: 630px; color: #fff; background: radial-gradient(circle at 80% 18%, rgba(0,174,239,.2), transparent 29%), linear-gradient(125deg, #101010 0 55%, #071b39 100%); }
.team-store-hero::before { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(135deg, transparent 45%, rgba(255,255,255,.2) 45% 45.3%, transparent 45.3%); background-size: 78px 78px; content: ""; }
.team-store-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; min-height: 630px; align-items: center; gap: clamp(42px, 6vw, 84px); padding-block: 70px; }
.team-store-hero-copy { position: relative; z-index: 2; }
.team-store-hero .breadcrumbs { margin-bottom: 32px; color: rgba(255,255,255,.72); }
.team-store-hero .breadcrumbs a { color: #fff; }
.team-store-hero h1 { max-width: 680px; margin-bottom: 22px; color: #fff; font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.055em; line-height: .93; }
.team-store-hero .lede { max-width: 650px; color: rgba(255,255,255,.82); }
.team-store-showcase { position: relative; min-height: 480px; }
.team-store-showcase img { position: absolute; display: block; border: 8px solid #fff; border-radius: 20px; object-fit: cover; box-shadow: 0 22px 58px rgba(0,0,0,.43); }
.team-showcase-main { top: 18px; right: 0; width: 78%; aspect-ratio: 1.25 / 1; transform: rotate(2deg); }
.team-showcase-tee { bottom: 0; left: 2%; width: 38%; aspect-ratio: .8 / 1; object-position: center 25%; transform: rotate(-5deg); }
.team-showcase-hat { right: 2%; bottom: 0; width: 42%; aspect-ratio: 1.15 / 1; transform: rotate(5deg); }
.team-store-benefits { position: relative; z-index: 2; margin-top: -28px; }
.team-store-benefits .proof-grid { box-shadow: 0 18px 45px rgba(17,17,17,.15); }
.team-category-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 64px 0 24px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.team-category-heading > div { display: flex; align-items: center; gap: 14px; }
.team-category-heading span { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: #fff; background: var(--blue-dark); font-size: .78rem; font-weight: 900; }
.team-category-heading h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.team-category-heading p { margin: 0 0 5px; color: var(--muted); font-size: .9rem; }
.team-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.team-product-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-product-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 28px rgba(17,17,17,.07); transition: transform 170ms ease, box-shadow 170ms ease; }
.team-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-product-media { position: relative; overflow: hidden; background: #f3f3f3; }
.team-product-media img { width: 100%; aspect-ratio: .93 / 1; object-fit: cover; object-position: center; transition: transform 200ms ease; }
.team-product-media-wide img { aspect-ratio: 1.08 / 1; }
.team-product-media-landscape img { aspect-ratio: 1.25 / 1; }
.team-product-card:hover .team-product-media img { transform: scale(1.015); }
.team-product-badge { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 10px; border-radius: 99px; color: #fff; background: #101010; font-size: .65rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.team-product-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.team-product-body h3 { margin-bottom: 9px; font-size: 1.32rem; line-height: 1.18; }
.team-product-body > p { min-height: 48px; margin-bottom: 8px; color: var(--muted); font-size: .9rem; }
.team-product-price { margin: 8px 0 20px; color: var(--ink); font-size: 1.55rem; font-weight: 900; }
.team-product-controls { display: grid; grid-template-columns: 1fr 88px; gap: 8px 10px; margin-top: 0; }
.team-product-controls label { align-self: end; margin-top: 4px; font-size: .74rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.team-product-controls label:first-of-type { grid-column: 1 / -1; }
.team-product-controls label[for^="qty-"] { grid-column: 1; align-self: center; margin: 0; }
.team-product-controls select { grid-column: 1 / -1; }
.team-product-controls select, .team-product-controls input { min-width: 0; min-height: 46px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; font: inherit; }
.team-product-controls select:focus, .team-product-controls input:focus { border-color: var(--blue); outline: 3px solid rgba(0,174,239,.18); }
.team-product-controls input { grid-column: 2; }
.team-product-controls .button { grid-column: 1 / -1; width: 100%; margin-top: 7px; }
.team-product-controls .add-message { grid-column: 1 / -1; margin: 0; text-align: center; }
.team-product-note { min-height: 0 !important; margin: 0 0 16px !important; padding: 12px; border-radius: 10px; color: #414141 !important; background: var(--cream); font-size: .8rem !important; }
.team-product-note a { font-weight: 800; }
.team-store-help { align-items: start; }
.team-store-help .button { margin-top: 16px; }


.lg-install { position: relative; overflow: hidden; padding: 64px 0 52px; color: #fff; background: radial-gradient(ellipse at 14% 0%, rgba(244,123,32,.11), transparent 34%), radial-gradient(ellipse at 88% 110%, rgba(255,255,255,.05), transparent 35%), #111312; }
.lg-install::before { position: absolute; inset: 0; pointer-events: none; opacity: .14; background-image: repeating-radial-gradient(ellipse at 18% 120%, transparent 0 28px, rgba(255,255,255,.22) 29px 30px), linear-gradient(115deg, transparent 0 72%, rgba(255,255,255,.07) 72% 72.35%, transparent 72.35%); content: ""; }
.lg-install .container { position: relative; z-index: 1; }
.lg-install__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.lg-install__eyebrow { display: block; margin-bottom: 7px; color: var(--warm); font-size: 11px; font-weight: 850; letter-spacing: 1.8px; line-height: 1.2; text-transform: uppercase; }
.lg-install__header h2 { margin: 0; color: #fff; font-size: clamp(25px, 3vw, 42px); letter-spacing: -.6px; text-transform: uppercase; }
.lg-install__tutorial { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(244,123,32,.52); border-radius: 999px; color: #ff9749; background: rgba(244,123,32,.11); font-size: 10px; font-weight: 850; letter-spacing: .75px; line-height: 1.2; text-transform: uppercase; }
.lg-install__play { display: inline-grid; width: 16px; height: 16px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; }
.lg-install__steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(4,5,5,.49); box-shadow: 0 18px 42px rgba(0,0,0,.2); list-style: none; backdrop-filter: blur(3px); }
.lg-install__step { position: relative; min-width: 0; padding: 30px 17px 25px; text-align: center; }
.lg-install__step + .lg-install__step { border-left: 1px solid rgba(255,255,255,.1); }
.lg-install__number { position: absolute; top: 11px; right: 12px; color: rgba(244,123,32,.85); font-size: 10px; font-weight: 850; letter-spacing: 1px; }
.lg-install__icon { display: flex; width: 58px; height: 58px; margin: 0 auto 13px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: rgba(255,255,255,.86); background: rgba(255,255,255,.045); transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.lg-install__icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.lg-install__step:hover .lg-install__icon { border-color: rgba(244,123,32,.6); color: var(--warm); transform: translateY(-2px); }
.lg-install__step h3 { margin: 0 0 8px; color: #fff; font-size: 13px; font-weight: 850; letter-spacing: 1px; line-height: 1.2; text-transform: uppercase; }
.lg-install__step p { margin: 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.55; }
.lg-install__safety { margin: 18px 0 0; color: rgba(255,255,255,.6); font-size: 10px; line-height: 1.55; text-align: center; }
.lg-install__warning { margin-right: 5px; color: var(--warm); }
.lg-install__safety strong { color: rgba(255,255,255,.86); }

@media (max-width: 1040px) {
  .header-inner { gap: 10px; }
  .nav-toggle { display: block; }
  .header-actions { margin-left: 0; gap: 6px; }
  .main-nav { position: fixed; inset: 82px 0 0; display: none; margin: 0; padding: 20px; align-items: stretch; overflow-y: auto; background: #171717; }
  .main-nav.is-open { display: block; }
  .main-nav > a, .nav-group > summary { display: block; padding: 14px; font-size: 1rem; }
  .nav-cta { margin: 10px 0 0; }
  .nav-group { display: block; }
  .nav-dropdown { position: static; width: auto; margin: 2px 12px 10px; border: 0; box-shadow: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-install__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg-install__step:nth-child(4) { border-left: 0; }
  .lg-install__step:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.1); }
  .team-store-hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .team-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-grid-three { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .service-options { padding: 54px 0 60px; }
  .hero { min-height: 690px; }
  .hero-image { object-position: 64% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,8,8,.82), rgba(8,8,8,.48)); }
  .hero-content { padding: 84px 0 100px; }
  .proof-grid, .split, .quote-panel, .footer-grid { grid-template-columns: 1fr; }
  .proof-strip { margin-top: -40px; }
  .proof-item { padding: 20px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .service-grid, .process-grid, .secondary-services { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .process-step::after { display: none; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 220px 220px; }
  .project:first-child { grid-column: 1 / -1; grid-row: auto; }
  .project:nth-child(2) { grid-column: 1 / -1; }
  .quote-form { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .feature-grid, .info-grid, .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .shop-grid, .shop-grid-three, .product-layout, .cart-layout { grid-template-columns: 1fr; }
  .shop-card { grid-template-columns: 1fr; }
  .shop-card-media { min-height: 260px; }
  .shop-grid-three .shop-card { grid-template-rows: 240px auto; }
  .shop-grid-three .shop-card-media, .shop-grid-three .shop-card-media img { height: 240px; }
  .shop-grid-three .shop-card-copy { min-height: 0; }
  .product-panel, .cart-summary { position: static; }
  .pattern-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-line { grid-template-columns: 70px 1fr 70px; }
  .cart-thumb { width: 70px; height: 70px; }
  .cart-line-actions { grid-column: 2 / -1; display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .lg-install { padding: 48px 0 40px; }
  .lg-install__header { display: block; margin-bottom: 21px; }
  .lg-install__tutorial { margin-top: 15px; }
  .lg-install__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg-install__step:nth-child(odd) { border-left: 0; }
  .lg-install__step:nth-child(even) { border-left: 1px solid rgba(255,255,255,.1); }
  .lg-install__step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .gallery-grid img { height: 250px; }
  .inline-cta { align-items: flex-start; flex-direction: column; }
  .team-store-hero-grid { grid-template-columns: 1fr; padding: 64px 0 86px; }
  .team-store-showcase { min-height: 410px; margin-top: 10px; }
  .team-store-benefits { margin-top: -35px; }
  .team-category-heading { display: block; }
  .team-category-heading p { margin: 10px 0 0 56px; }
  .team-product-grid, .team-product-grid-two { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .header-inner { gap: 6px; }
  .brand img { height: 34px; }
  .nav-toggle { width: 40px; height: 40px; }
  .header-social a { width: 30px; height: 30px; }
  .header-social svg { width: 15px; height: 15px; }
  .header-cart { width: 34px; height: 34px; }
  .header-cart svg { width: 17px; height: 17px; }
  .header-cart-count { top: -6px; right: -6px; min-width: 19px; height: 19px; font-size: .6rem; }
  .lg-install__steps { grid-template-columns: 1fr; }
  .lg-install__step, .lg-install__step:nth-child(even) { border-left: 0; }
  .lg-install__step:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,.1); }
  .team-store-showcase { min-height: 310px; }
  .team-store-showcase img { border-width: 5px; border-radius: 13px; }
  .team-category-heading p { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
