:root {
  --paper: #fff4df;
  --paper-deep: #f7dba7;
  --ink: #173d58;
  --muted: #5d6970;
  --pink: #ec3f78;
  --coral: #ff684f;
  --teal: #0097aa;
  --gold: #f6ad2f;
  --violet: #7b55b7;
  --green: #6ea94f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(67, 38, 21, 0.15);
  --line: rgba(23, 61, 88, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(90deg, rgba(236, 63, 120, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(0, 151, 170, 0.06) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 40%),
    repeating-linear-gradient(8deg, rgba(119, 84, 55, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 244, 223, 0.92);
  border-bottom: 1px solid rgba(236, 63, 120, 0.22);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--pink);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(236, 63, 120, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 151, 170, 0.34);
}

.header-call:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(23, 61, 88, 0.18);
}

.section-band,
.services,
.feature-split,
.work-section,
.pricing-section,
.contact-section,
.page-links {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 48px;
  padding: 70px 0 54px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: #2f4b5d;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
}

.quick-points div {
  position: relative;
  min-height: 104px;
  padding: 16px 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(236, 63, 120, 0.18);
  border-radius: 8px;
}

.quick-points div::before {
  content: "";
  position: absolute;
  inset: auto 12px 10px 12px;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--teal), var(--violet));
  border-radius: 999px;
}

.quick-points dt {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--teal);
}

.quick-points dd {
  margin: 5px 0 0;
  font-size: 0.94rem;
}

.hero-art {
  position: relative;
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 2%;
  height: 28px;
  background: rgba(67, 38, 21, 0.18);
  filter: blur(18px);
  z-index: -1;
}

.hero-art img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 46px;
  padding: 64px 0 56px;
}

.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.45rem;
  line-height: 1.03;
}

.page-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #2f4b5d;
  font-size: 1.14rem;
}

.page-hero img {
  width: min(100%, 430px);
  max-height: 480px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 22px 34px rgba(67, 38, 21, 0.16));
}

.contact-hero img {
  width: min(100%, 560px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.feature-copy h2,
.pricing-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.1;
}

.section-heading p,
.feature-copy p,
.pricing-copy p,
.contact-inner p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  padding: 34px 0 74px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-list article,
.gallery-card,
.price-table div {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 61, 88, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(67, 38, 21, 0.08);
}

.service-list article {
  min-height: 196px;
  padding: 24px;
}

.paint-dot {
  display: block;
  width: 48px;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  transform: rotate(-5deg);
}

.paint-dot.coral {
  background: linear-gradient(90deg, var(--pink), var(--coral));
}

.paint-dot.teal {
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.paint-dot.gold {
  background: linear-gradient(90deg, var(--gold), var(--violet));
}

.service-list h3,
.gallery-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-list p,
.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-split,
.pricing-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid rgba(236, 63, 120, 0.18);
}

.feature-image img,
.pricing-image img {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 600px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(-45deg);
}

.work-section {
  padding: 72px 0;
  border-top: 1px solid rgba(0, 151, 170, 0.18);
}

.page-section {
  border-top: 1px solid rgba(236, 63, 120, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(0, 151, 170, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.gallery-card {
  display: grid;
  grid-template-rows: 230px auto;
  min-height: 410px;
  overflow: hidden;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card:focus-visible {
  outline: 4px solid rgba(236, 63, 120, 0.36);
  outline-offset: 3px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
  transition: transform 220ms ease;
}

.gallery-card-content {
  padding: 18px;
}

.gallery-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.gallery-empty {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 61, 88, 0.12);
  border-radius: 8px;
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

.page-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 8px 0 76px;
}

.page-links a {
  display: block;
  min-height: 178px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 61, 88, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(67, 38, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 61, 88, 0.14);
}

.page-links strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.page-links small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  color: #244a60;
  font-size: 0.92rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(236, 63, 120, 0.18);
  border-radius: 8px;
}

.order-steps,
.sign-type-section,
.quote-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(236, 63, 120, 0.18);
}

.steps-grid,
.sign-type-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.step-card,
.sign-type-card,
.quote-card {
  min-height: 200px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 61, 88, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(67, 38, 21, 0.08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.step-card h3,
.sign-type-card h3,
.quote-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.step-card p,
.sign-type-card p,
.quote-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.sign-type-card {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sign-type-card.gallery-card {
  grid-template-rows: 190px auto;
  min-height: 0;
}

.sign-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 61, 88, 0.14);
}

.sign-type-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--white);
}

.sign-type-card.gallery-card img {
  height: 100%;
}

.sign-type-card div {
  padding: 20px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.quote-card .button {
  align-self: flex-start;
}

.quote-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.quote-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.sticky-contact {
  display: none;
}

.pricing-section {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  min-height: 96px;
  padding: 16px;
  border-left: 5px solid var(--pink);
}

.price-table span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.price-table strong {
  color: var(--pink);
  font-size: 1.6rem;
  line-height: 1;
}

.price-table small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: 74px 0 86px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background:
    linear-gradient(100deg, rgba(236, 63, 120, 0.14), rgba(246, 173, 47, 0.16), rgba(0, 151, 170, 0.14)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 61, 88, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-mark {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.contact-button {
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  color: #31536a;
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(236, 63, 120, 0.18);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-facebook img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(23, 61, 88, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(100%, 980px);
  max-height: calc(100vh - 96px);
  margin: 0;
  overflow: auto;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  background: var(--white);
}

.lightbox figcaption {
  padding: 16px 18px 18px;
  color: var(--ink);
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--pink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
    padding-top: 6px;
  }

  .hero,
  .page-hero,
  .feature-split,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-art,
  .page-hero img {
    order: -1;
  }

  .hero-art img {
    max-height: 360px;
  }

  .service-list,
  .gallery-grid,
  .page-links,
  .steps-grid,
  .sign-type-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    grid-template-columns: 72px 1fr;
  }

  .contact-mark {
    width: 72px;
    height: 72px;
  }

  .contact-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-link {
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 0;
  }

  .header-call {
    width: 100%;
  }

  .section-band,
  .services,
  .feature-split,
  .work-section,
  .pricing-section,
  .contact-section,
  .page-links {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .page-hero {
    gap: 26px;
    padding: 34px 0 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.75rem;
  }

  .hero-line {
    font-size: 1.35rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-points,
  .service-list,
  .gallery-grid,
  .price-table,
  .page-links,
  .steps-grid,
  .sign-type-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .feature-copy h2,
  .pricing-copy h2,
  .contact-inner h2 {
    font-size: 2rem;
  }

  .feature-split,
  .pricing-section,
  .work-section {
    padding: 54px 0;
  }

  .order-steps,
  .sign-type-section,
  .quote-section {
    padding: 54px 14px;
  }

  .page-links {
    padding-bottom: 54px;
  }

  .gallery-card {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .gallery-card img,
  .sign-type-card.gallery-card img {
    height: auto;
    object-fit: contain;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-mark,
  .contact-button {
    justify-self: center;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }

  .sticky-contact {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: rgba(255, 244, 223, 0.96);
    border-top: 1px solid rgba(236, 63, 120, 0.22);
    box-shadow: 0 -12px 30px rgba(67, 38, 21, 0.12);
    backdrop-filter: blur(12px);
  }

  .sticky-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 6px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 61, 88, 0.1);
    border-radius: 8px;
  }

  .sticky-contact a:first-child {
    color: var(--white);
    background: var(--pink);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
