/* -- CANYON CUSTOM METALWORKS 2026 -- */
:root {
  --paper: #f4efe6;
  --paper-2: #ede4d5;
  --ink: #17202a;
  --ink-soft: #2a3948;
  --brand: #1f9cf7;
  --brand-deep: #0f2234;
  --brass: #d5a24a;
  --sage: #798471;
  --rust: #9b6242;
  --line: rgba(23, 32, 42, 0.12);
  --card: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 70px rgba(15, 34, 52, 0.14);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px; }

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

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 162, 74, 0.15), transparent 20%),
    radial-gradient(circle at top right, rgba(31, 156, 247, 0.10), transparent 25%),
    var(--paper);
  line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto; }
.section {
  padding: 80px 0; }
#top {
  scroll-margin-top: 82px;
}  
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--ink-soft); }
h1, h2, h3 {
  margin: 0;
  line-height: 1.05; }
h1 {
  font-family: 'Oswald', Impact, sans-serif;	
  font-size: clamp(2rem, 8vw, 4.5rem);
  max-width: 14ch; }
h2 {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 12ch; }
h3 {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.35rem; }
p { 
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	margin: 0 0 1rem; }

.section-head {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px; }
.section-copy {
  max-width: 48ch;
  color: rgba(23, 32, 42, 0.82); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 230, 0.92);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(15, 34, 52, 0.10);
}

body {
  padding-top: 82px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px; }
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0; }
.brand img {
  width: 85px;
  height: auto; }
.brand-text {
  font-family: 'Oswald', Impact, sans-serif;
  display: flex;
  flex-direction: column;
  min-width: 0; }
.brand-text strong {
  font-size: 1rem; }
.brand-text span:last-child {
  color: rgba(23, 32, 42, 0.72);
  font-size: 0.9rem; }
.site-nav {
  font-family: 'Oswald', Impact, sans-serif;
  display: flex;
  gap: 22px;
  align-items: center; }
.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--ink-soft); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), var(--brass));
  transition: transform 180ms ease; }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  padding: 12px; }
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-deep);
  margin: 6px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap; }

.hero {
  position: relative;
  display: grid;
  align-items:end;
  overflow:hidden; }
.hero-media,.hero-overlay { 
  position:absolute;inset:0; }
.hero-media img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center 35%; }
.hero-overlay{
  background:
    linear-gradient(180deg, rgba(0, 153, 255,.15), rgba(0, 153, 255,.25)),
    linear-gradient(90deg, rgba(8,16,24,.9) 0%, rgba(8,16,24,.7) 50%, rgba(8,16,24,.1) 100%); }
.hero-content {
	position:relative;
	z-index:2;
	color:#fff;
	padding:2.5rem 0 3rem;
	max-width:720px; }
.eyebrow {
	text-transform:uppercase;
	letter-spacing:.16em;
	font-weight:700;
	font-size:.78rem; }
.hero-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5); }
.hero-copy {
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 40px 0 30px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer; }
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 34, 52, 0.14); }
.button-primary {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.7); }
.button-secondary {
  background: linear-gradient(90deg, var(--brand), #58b4ff);
  color: var(--ink); }
.button-ghost {
  background: rgba(255,255,255,0.6);
  border-color: rgba(15, 34, 52, 0.12);
  color: var(--ink); }


.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin-top: 1.8rem; }


.intro-grid,
.social-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start; }

.intro-collage {
  display: grid;
  gap: 18px; }

.panel-card,
.category-card,
.project-card,
.process-card,
.shop-card,
.embed-card,
.map-card,
.feature-list article,
.quote-form,
.dialog-shell {
  background: var(--card);
  border: 1px solid rgba(15, 34, 52, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px); }

.panel-card,
.category-card,
.project-card,
.process-card,
.shop-card,
.embed-card,
.map-card,
.feature-list article,
.quote-form {
  border-radius: var(--radius); }

.panel-card {
  overflow: hidden; }
.panel-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover; }
.accent-card {
  display: grid;
  grid-template-columns: 160px auto;
  gap: 10px;
  padding: 10px;
  align-items: center; }
.accent-card img {
  aspect-ratio: 1 / 1;
  object-fit: fill; }

/* FEATURED */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px; }
.feature-list article {
  padding: 20px; }
.feature-list p {
  margin-bottom: 0;
  color: rgba(23, 32, 42, 0.8); }

.dark-section {
  background:
    linear-gradient(180deg, rgba(15, 34, 52, 0.95), rgba(23, 32, 42, 0.96)),
    var(--brand-deep);
  color: white; }
.dark-section .eyebrow,
.dark-section .section-copy { color: rgba(255,255,255,0.75); }

.card-grid,
.projects-grid,
.process-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px; }

.category-card { grid-column: span 3; overflow: hidden; color: var(--ink); background: rgba(255,255,255,0.92); }
.project-card { grid-column: span 3; overflow: hidden; }
.process-card { grid-column: span 3; overflow: hidden; }
.shop-card { grid-column: span 4; padding: 24px; }

.category-card button,
.project-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer; }

.card-media {
  position: relative;
  overflow: hidden; }
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 350ms ease; }
.category-card:hover .card-media img,
.project-card:hover .card-media img { transform: scale(1.03); }

.card-body {
  padding: 22px; }

.count-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  background: rgba(31, 156, 247, 0.12);
  color: var(--brand-deep); }

.card-body p:last-child { margin-bottom: 0; }

.process-card img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover; }

.process-card .card-body {
  padding-top: 18px; }
.process-section {
  background:
    linear-gradient(180deg, rgba(213, 162, 74, 0.10), rgba(121, 132, 113, 0.05)),
    transparent; }

.shop-section {
  background:
    linear-gradient(180deg, rgba(213, 162, 74, 0.10), rgba(121, 132, 113, 0.05)),
    transparent; }

.social-section {
  background:
    linear-gradient(180deg, rgba(213, 162, 74, 0.10), rgba(121, 132, 113, 0.05)),
    transparent; }

.quote-section {
  background:
    linear-gradient(180deg, rgba(213, 162, 74, 0.10), rgba(121, 132, 113, 0.05)),
    transparent; }

.quote-form {
  padding: 24px; }

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft); }
input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 34, 52, 0.14);
  background: rgba(255,255,255,0.82);
  padding: 14px 16px;
  color: var(--ink); }
textarea { resize: vertical; }

.form-actions {
  grid-template-columns: auto auto;
  justify-content: start; }

.summary-wrap {
  margin-top: 8px; }
#quote-summary {
  min-height: 190px;
  background: rgba(15,34,52,0.03); }

.quote-notes {
  display: grid;
  gap: 14px;
  margin-top: 22px; }
.quote-notes div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 34, 52, 0.08);
  background: rgba(255,255,255,0.56); }
.quote-notes strong {
  display: block;
  margin-bottom: 4px; }

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 34, 52, 0.12);
  background: rgba(255,255,255,0.74);
  font-weight: 700; }
.social-link svg { width: 18px; height: 18px; }

.embed-card,
.map-card {
  overflow: hidden; }
.embed-card { padding: 20px; }
.facebook-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 34, 52, 0.1);
  background: white; }
.facebook-frame iframe {
  width: 100%;
  min-height: 560px; }


.address-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center; }

.quote-notes img,
.address-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto; }

.map-card iframe {
  width: 100%;
  min-height: 400px;
  height: 100%;
  border: 0; }

.site-footer {
  padding: 12px 0 6px;
  border-top: 1px solid rgba(15, 34, 52, 0.09); }
.footer-inner {
  display: grid;
  grid-template-columns: 0.3fr 0.2fr 0.3fr auto;
  gap: 18px;
  align-items: center; }
.footer-logo {
  width: 320px;
  max-width: 100%;
  margin-top: 2px;
  margin-bottom: 2px; }


.gallery-dialog,
.lightbox-dialog {
  width: min(1100px, calc(100% - 24px));
  border: 0;
  padding: 0;
  background: transparent; }
.gallery-dialog::backdrop,
.lightbox-dialog::backdrop {
  background: rgba(5, 12, 20, 0.78); }

.dialog-shell {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border-radius: 28px; }
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 34, 52, 0.10);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer; }
.dialog-header {
  padding-right: 60px;
  margin-bottom: 24px; }
.dialog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; }
.dialog-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in; }
.dialog-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(15,34,52,0.08); }
.dialog-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover; }
.dialog-grid figcaption {
  padding: 12px 14px 14px;
  font-size: 0.92rem;
  color: var(--ink-soft); }

.lightbox-dialog {
  max-width: 92vw; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.14);
  color: white; }
.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center; }
.lightbox-figure img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: var(--shadow); }
.lightbox-figure figcaption {
  color: white;
  text-align: center; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(244, 239, 230, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);   }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 8px 4px; }
  .site-header.is-hidden {
    transform: translateY(-100%);
  }

  .site-header .site-nav {
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px; } 
  .intro-grid,
  .social-layout,
  .quote-layout,
  .footer-inner {
    grid-template-columns: 1fr;   }
  .feature-list { grid-template-columns: 1fr; }
  .accent-card {
    grid-template-columns: 1fr;   } 
  .category-card,
  .project-card,
  .process-card,
  .shop-card {
    grid-column: span 12;   }
  .dialog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  .header-inner {
    min-height: 74px;
    gap: 12px; }

  .brand {
    gap: 10px;
    max-width: calc(100% - 68px); }

  .brand img {
    width: 54px;
    flex-shrink: 0; }

  .brand-text {
    min-width: 0; }

  .brand-text strong {
    font-size: 0.95rem;
    line-height: 1.1; }

  .brand-text span:last-child {
    display: none; }

  .hero {
    min-height: auto;
    padding-top: 0; }

  .hero-content {
    padding: 1.25rem 0 2rem;
    max-width: 100%; }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    max-width: 100%; }

  .hero-copy {
    padding: 14px 0 18px;
    gap: 14px; }

  .hero-actions {
    gap: 10px; }

  .hero-actions .button {
    width: 100%; }

  .card-body,
  .quote-form,
  .embed-card,
  .dialog-shell {
    padding: 16px; }

  .two-up,
  .three-up,
  .form-actions,
  .dialog-grid,
  .faq-grid {
    grid-template-columns: 1fr; }

  .faq-grid {
    gap: 12px; }

  .address-card {
    grid-template-columns: 1fr;
    text-align: center; }

  .address-card p {
    text-align: center; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center; }

  .footer-inner > div {
    justify-self: center; }

  .footer-inner .button {
    width: 100%;
    max-width: 320px; }
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
}

.sticky-cta a {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .sticky-cta a {
    display: block;
    text-align: center;
  }
}
Quote Start Trigger