/* Shared premium layout for installation service and location pages. */

.refresh-page {
  --refresh-navy: #0b1d3a;
  --refresh-navy-soft: #17345d;
  --refresh-gold: #c8913a;
  --refresh-gold-light: #e4b86f;
  --refresh-cream: #f8f4ec;
  --refresh-paper: #fffdf9;
  --refresh-ink: #17243a;
  --refresh-slate: #526174;
  --refresh-line: #ded9cf;
  --refresh-shadow: 0 18px 54px rgba(11, 29, 58, 0.12);
  background: var(--refresh-paper);
  color: var(--refresh-ink);
}

.refresh-page main {
  overflow: hidden;
}

.refresh-page img {
  max-width: 100%;
}

.refresh-skip {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 6px;
  background: #fff;
  color: var(--refresh-navy);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.refresh-skip:focus {
  transform: translateY(0);
}

.refresh-page :where(a, button, summary):focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--refresh-navy);
}

.refresh-page [id] {
  scroll-margin-top: 110px;
}

.refresh-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.refresh-narrow {
  width: min(800px, calc(100% - 40px));
  margin-inline: auto;
}

.refresh-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #ece7dd;
}

.refresh-breadcrumb ol {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: var(--refresh-slate);
  font-size: 13px;
}

.refresh-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa3af;
}

.refresh-breadcrumb a {
  color: var(--refresh-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.refresh-breadcrumb a:hover {
  color: #765116;
  text-decoration-color: currentColor;
}

.refresh-hero {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(200, 145, 58, 0.11), transparent 31%),
    linear-gradient(135deg, #fffdf9 0%, #f7f0e4 100%);
}

.refresh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.refresh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #7a541b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.refresh-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--refresh-gold);
}

.refresh-hero h1,
.refresh-heading h2,
.refresh-content h2,
.refresh-cta h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.refresh-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--refresh-navy);
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.refresh-hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #45566b;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.refresh-scope-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 680px;
  margin-top: 22px;
  padding: 13px 15px;
  border-left: 3px solid var(--refresh-gold);
  background: rgba(255, 255, 255, 0.74);
  color: #33455c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.refresh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.refresh-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 21px;
  border: 1px solid var(--refresh-navy);
  border-radius: 7px;
  background: var(--refresh-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.refresh-button:hover {
  border-color: var(--refresh-navy-soft);
  background: var(--refresh-navy-soft);
  color: #fff;
  transform: translateY(-2px);
}

.refresh-button-gold {
  border-color: var(--refresh-gold);
  background: var(--refresh-gold);
  color: var(--refresh-navy);
}

.refresh-button-gold:hover {
  border-color: var(--refresh-gold-light);
  background: var(--refresh-gold-light);
  color: var(--refresh-navy);
}

.refresh-button-light {
  border-color: #b9b09f;
  background: #fff;
  color: var(--refresh-navy);
}

.refresh-button-light:hover {
  border-color: var(--refresh-navy);
  background: var(--refresh-navy);
  color: #fff;
}

.refresh-hero-media {
  position: relative;
}

.refresh-hero-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px 22px 88px 22px;
  background: #d6d4cf;
  box-shadow: var(--refresh-shadow);
}

.refresh-hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.refresh-photo-label {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 270px;
  padding: 17px 20px;
  border-radius: 10px;
  background: var(--refresh-navy);
  box-shadow: 0 14px 38px rgba(11, 29, 58, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.refresh-photo-label strong {
  display: block;
  margin-bottom: 2px;
  color: var(--refresh-gold-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refresh-facts {
  background: var(--refresh-navy);
  color: #fff;
}

.refresh-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.refresh-fact {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.refresh-fact:first-child {
  border-left: 0;
}

.refresh-fact strong {
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.refresh-fact span,
.refresh-fact a {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.refresh-fact a:hover {
  color: #fff;
}

.refresh-section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.refresh-section-cream {
  background: var(--refresh-cream);
  border-block: 1px solid #e5ded2;
}

.refresh-section-navy {
  background: var(--refresh-navy);
  color: #fff;
}

.refresh-section-navy .refresh-eyebrow {
  color: var(--refresh-gold);
}

.refresh-heading {
  max-width: 770px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.refresh-heading .refresh-eyebrow {
  justify-content: center;
}

.refresh-heading h2,
.refresh-content h2 {
  margin: 0;
  color: var(--refresh-navy);
  font-size: clamp(32px, 4.5vw, 50px);
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.refresh-heading p,
.refresh-content > p {
  margin: 18px auto 0;
  color: var(--refresh-slate);
  font-size: 16px;
  line-height: 1.8;
}

.refresh-section-navy .refresh-heading h2,
.refresh-section-navy .refresh-content h2 {
  color: #fff;
}

.refresh-section-navy .refresh-heading p,
.refresh-section-navy .refresh-content > p {
  color: rgba(255, 255, 255, 0.67);
}

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

.refresh-service-card {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--refresh-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(11, 29, 58, 0.06);
}

.refresh-service-card::after {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 7px;
  color: rgba(11, 29, 58, 0.05);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 96px;
  line-height: 1;
}

.refresh-service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: var(--refresh-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.refresh-service-card p {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  color: var(--refresh-slate);
  font-size: 15px;
  line-height: 1.78;
}

.refresh-text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 22px;
  color: #765116;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.refresh-text-link:hover {
  color: var(--refresh-navy);
  text-decoration-color: currentColor;
}

.refresh-sign-grid,
.refresh-choice-grid,
.refresh-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.refresh-choice-grid-single {
  grid-template-columns: 1fr;
}

.refresh-sign,
.refresh-choice,
.refresh-city-card {
  padding: 26px;
  border: 1px solid var(--refresh-line);
  border-radius: 12px;
  background: #fff;
}

.refresh-sign-number,
.refresh-choice-label {
  display: inline-flex;
  min-width: 35px;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--refresh-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.refresh-sign h3,
.refresh-choice h3,
.refresh-city-card h4 {
  color: var(--refresh-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.refresh-sign p,
.refresh-choice p,
.refresh-city-card p {
  margin-top: 10px;
  color: var(--refresh-slate);
  font-size: 14px;
  line-height: 1.7;
}

.refresh-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid #dfd3bf;
  border-radius: 10px;
  background: #fffaf1;
  color: #5b4b33;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.refresh-style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.refresh-style-map {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--refresh-line);
  border-radius: 14px;
  background: var(--refresh-cream);
}

.refresh-style-map article {
  min-width: 0;
  padding: 21px 22px;
  border-left: 1px solid var(--refresh-line);
}

.refresh-style-map article:first-child {
  border-left: 0;
}

.refresh-style-map strong {
  color: var(--refresh-navy);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refresh-style-map p {
  margin-top: 8px;
  color: var(--refresh-slate);
  font-size: 13px;
  line-height: 1.6;
}

.refresh-style-map a {
  color: #765116;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.refresh-style-map a:hover {
  color: var(--refresh-navy);
  text-decoration-color: currentColor;
}

.refresh-style-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--refresh-line);
  border-radius: 15px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.refresh-style-card:hover {
  border-color: var(--refresh-gold);
  box-shadow: 0 17px 40px rgba(11, 29, 58, 0.11);
  transform: translateY(-4px);
}

/* height:auto is load-bearing. Each card <img> carries width/height attributes
   for CLS, and that height attribute wins over aspect-ratio unless height is
   auto, leaving the cards to render at the source's full pixel height. */
.refresh-style-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  /* Anchor the crop to the top: sources taller than 3:2 would otherwise lose
     the head of the window. No-op for the sources that are already 3:2. */
  object-position: center top;
  background: #e9e6e0;
}

.refresh-style-body {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.refresh-style-operation {
  margin-bottom: 12px;
  color: #765116;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.refresh-style-body h3 {
  color: var(--refresh-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.refresh-style-body p {
  margin-top: 10px;
  color: var(--refresh-slate);
  font-size: 14px;
  line-height: 1.7;
}

.refresh-style-body .refresh-text-link {
  margin-top: auto;
  padding-top: 22px;
}

.refresh-style-card:hover .refresh-text-link {
  color: var(--refresh-navy);
  text-decoration-color: currentColor;
}

.refresh-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.refresh-split-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--refresh-shadow);
}

.refresh-split-media img {
  width: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
}

.refresh-checks {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  list-style: none;
}

.refresh-checks li {
  position: relative;
  padding-left: 30px;
  color: #3c4d62;
  font-size: 15px;
  line-height: 1.65;
}

.refresh-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #765116;
  font-weight: 900;
}

.refresh-process {
  counter-reset: refresh-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.refresh-process-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.refresh-step {
  counter-increment: refresh-step;
  position: relative;
  padding: 0 28px 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.refresh-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.refresh-step::before {
  content: "0" counter(refresh-step);
  display: block;
  margin-bottom: 24px;
  color: var(--refresh-gold-light);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
}

.refresh-step h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.refresh-step p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.72;
}

.refresh-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(228, 184, 111, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.refresh-note strong {
  color: var(--refresh-gold-light);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.refresh-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.refresh-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 245px);
  gap: 14px;
}

.refresh-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e1d9;
}

.refresh-gallery figure:first-child {
  grid-row: 1 / 3;
}

.refresh-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.refresh-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(11, 29, 58, 0.82));
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
}

.refresh-faq-list {
  display: grid;
  gap: 12px;
}

.refresh-faq-list details {
  border: 1px solid var(--refresh-line);
  border-radius: 10px;
  background: #fff;
}

.refresh-faq-list summary {
  position: relative;
  padding: 22px 56px 22px 23px;
  color: var(--refresh-navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.refresh-faq-list summary::-webkit-details-marker {
  display: none;
}

.refresh-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #765116;
  font-size: 25px;
  transform: translateY(-50%);
}

.refresh-faq-list details[open] summary::after {
  content: "−";
}

.refresh-faq-list summary:hover {
  color: #765116;
}

.refresh-faq-answer {
  padding: 0 23px 22px;
  color: var(--refresh-slate);
  font-size: 15px;
  line-height: 1.75;
}

.refresh-link-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.refresh-related-links {
  margin-top: 28px;
}

.refresh-link-cloud a {
  padding: 11px 15px;
  border: 1px solid #cfc8bc;
  border-radius: 999px;
  background: #fff;
  color: var(--refresh-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.refresh-link-cloud a:hover {
  border-color: var(--refresh-navy);
  background: var(--refresh-navy);
  color: #fff;
  transform: translateY(-1px);
}

.refresh-city-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.refresh-city-card:hover {
  border-color: var(--refresh-gold);
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.09);
  transform: translateY(-3px);
}

.refresh-city-card small {
  display: block;
  margin-bottom: 9px;
  color: #765116;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.refresh-county + .refresh-county {
  margin-top: 54px;
}

.refresh-county h3 {
  margin-bottom: 20px;
  color: var(--refresh-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.refresh-cta {
  padding: clamp(72px, 10vw, 118px) 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(200, 145, 58, 0.2), transparent 30%),
    var(--refresh-navy);
  color: #fff;
  text-align: center;
}

.refresh-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.refresh-cta p {
  max-width: 680px;
  margin: 19px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.refresh-cta .refresh-actions {
  justify-content: center;
}

.refresh-cta .refresh-button-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.refresh-cta .refresh-button-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--refresh-navy);
}

.refresh-license-line {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.refresh-license-line a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.refresh-license-line a:hover {
  color: #fff;
}

.refresh-mobile-actions {
  display: none;
}

/* Real projects anchor the service pages without cropping away the installation. */
.refresh-service-page .refresh-hero {
  padding: clamp(36px, 5vw, 66px) 0;
}

.refresh-service-page .refresh-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4.5vw, 64px);
}

.refresh-service-page .refresh-hero h1 {
  font-size: clamp(40px, 4.3vw, 59px);
  line-height: 1.07;
}

.refresh-service-page .refresh-hero-lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
}

.refresh-service-scope {
  margin: 16px 0 0;
  color: var(--refresh-slate);
  font-size: 12px;
  line-height: 1.5;
}

.refresh-hero-frame.refresh-hero-frame-project,
.refresh-hero-frame.refresh-hero-frame-project img {
  min-height: 0;
  height: auto;
}

.refresh-hero-frame.refresh-hero-frame-project {
  border: 8px solid #fff;
  border-radius: 4px;
}

.refresh-hero-frame.refresh-hero-frame-project img {
  width: 100%;
  object-fit: contain;
}

.refresh-hero-frame.refresh-hero-frame-door {
  max-width: 400px;
  margin-inline: auto;
}

.refresh-service-page .refresh-photo-label {
  position: static;
  max-width: none;
  margin: 16px 0 0;
  padding: 0;
  border-radius: 0;
  color: var(--refresh-slate);
  background: transparent;
  box-shadow: none;
  font-weight: 500;
}

.refresh-service-page .refresh-photo-label strong {
  color: #765116;
}

.refresh-door-page .refresh-hero-media {
  justify-self: center;
}

.refresh-project-photo {
  margin: 0;
}

.refresh-project-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--refresh-shadow);
}

.refresh-project-photo-portrait {
  width: min(100%, 410px);
  margin-inline: auto;
}

.refresh-project-photo figcaption,
.refresh-example-caption {
  margin: 14px 0 0;
  color: var(--refresh-slate);
  font-size: 12px;
  line-height: 1.6;
}

.refresh-project-proof .refresh-content > p + p {
  margin-top: 18px;
}

.refresh-project-proof .refresh-text-link {
  margin-top: 24px;
}

.refresh-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--refresh-line);
  border-bottom: 1px solid var(--refresh-line);
}

.refresh-quote-grid article {
  padding: 30px;
  border-left: 1px solid var(--refresh-line);
}

.refresh-quote-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.refresh-quote-grid article > span {
  color: #765116;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.refresh-quote-grid h3 {
  margin: 15px 0 12px;
  color: var(--refresh-navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.refresh-quote-grid p {
  color: var(--refresh-slate);
  font-size: 14px;
  line-height: 1.75;
}

.refresh-quote-footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.refresh-quote-footer p {
  color: var(--refresh-slate);
  line-height: 1.6;
}

.refresh-project-hero-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--refresh-navy);
  text-underline-offset: 4px;
  font-size: 13px;
  font-weight: 700;
}

.window-style-page.window-style-picture-page .window-style-hero .refresh-hero-frame {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}

.window-style-geometric-page .window-style-gallery figcaption a {
  color: #fff;
  text-underline-offset: 3px;
}

.window-style-gallery .window-style-project-photo img {
  object-fit: contain;
}

@media (max-width: 1080px) {
  .refresh-hero-grid,
  .refresh-split {
    gap: 42px;
  }

  .refresh-sign-grid,
  .refresh-choice-grid,
  .refresh-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refresh-choice-grid-single {
    grid-template-columns: 1fr;
  }

  .refresh-style-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refresh-style-map article:nth-child(3) {
    border-left: 0;
  }

  .refresh-style-map article:nth-child(n + 3) {
    border-top: 1px solid var(--refresh-line);
  }

  .refresh-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .refresh-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .refresh-service-page .refresh-hero-grid,
  .refresh-hero-grid,
  .refresh-split {
    grid-template-columns: 1fr;
  }

  .refresh-hero-copy {
    max-width: 760px;
  }

  .refresh-hero-media {
    width: min(680px, 100%);
  }

  .refresh-hero-frame,
  .refresh-hero-frame img {
    min-height: 420px;
  }

  .refresh-photo-label {
    right: 18px;
  }

  .refresh-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .refresh-service-page .refresh-hero {
    padding: 28px 0 38px;
  }

  .refresh-service-page .refresh-hero h1 {
    font-size: clamp(35px, 9.5vw, 44px);
  }

  .refresh-service-page .refresh-hero-grid {
    gap: 28px;
  }

  .refresh-service-page .refresh-hero-lead {
    font-size: 16px;
    margin-top: 16px;
  }

  .refresh-service-page .refresh-hero .refresh-actions {
    margin-top: 20px;
  }

  .refresh-service-page .refresh-hero .refresh-actions a:not(:first-child) {
    display: none;
  }

  .refresh-service-page .refresh-photo-label {
    margin: 12px 0 0;
  }

  .refresh-quote-grid {
    grid-template-columns: 1fr;
  }

  .refresh-quote-grid article,
  .refresh-quote-grid article:first-child {
    padding: 24px 0;
    border-left: 0;
  }

  .refresh-quote-grid article + article {
    border-top: 1px solid var(--refresh-line);
  }

  .refresh-quote-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .refresh-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .refresh-shell,
  .refresh-narrow,
  .refresh-breadcrumb ol {
    width: min(100% - 32px, 1160px);
  }

  .refresh-hero {
    padding: 52px 0 64px;
  }

  .refresh-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .refresh-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refresh-actions .refresh-button:first-child {
    grid-column: 1 / -1;
  }

  .refresh-button {
    padding-inline: 14px;
  }

  .refresh-hero-frame,
  .refresh-hero-frame img {
    min-height: 340px;
  }

  .refresh-hero-frame {
    border-radius: 16px 16px 60px 16px;
  }

  .refresh-photo-label {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -30px 14px 0;
  }

  .refresh-fact-grid,
  .refresh-card-grid,
  .refresh-sign-grid,
  .refresh-choice-grid,
  .refresh-style-grid,
  .refresh-city-grid,
  .refresh-process {
    grid-template-columns: 1fr;
  }

  .refresh-style-map {
    grid-template-columns: 1fr;
  }

  .refresh-style-map article,
  .refresh-style-map article:nth-child(3) {
    border-top: 1px solid var(--refresh-line);
    border-left: 0;
  }

  .refresh-style-map article:first-child {
    border-top: 0;
  }

  .refresh-fact {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .refresh-fact:first-child {
    border-top: 0;
  }

  .refresh-step,
  .refresh-step:nth-child(3) {
    padding: 0 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .refresh-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .refresh-note {
    grid-template-columns: 1fr;
  }

  .refresh-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .refresh-gallery figure:first-child {
    grid-row: auto;
  }

  .refresh-mobile-actions {
    position: fixed;
    z-index: 500;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--refresh-navy);
    box-shadow: 0 -8px 26px rgba(11, 29, 58, 0.18);
  }

  .refresh-mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .refresh-mobile-actions a:first-child {
    border-left: 0;
  }

  .refresh-mobile-actions a:last-child {
    background: var(--refresh-gold);
    color: var(--refresh-navy);
  }

  .refresh-mobile-actions a:hover {
    background: var(--refresh-navy-soft);
    color: #fff;
  }

  .refresh-mobile-actions a:last-child:hover {
    background: var(--refresh-gold-light);
    color: var(--refresh-navy);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .refresh-page *,
  .refresh-page *::before,
  .refresh-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .refresh-mobile-actions,
  .refresh-actions,
  .announce-bar,
  .site-nav,
  .site-footer {
    display: none !important;
  }
}

.refresh-project-photo figcaption a { color: var(--refresh-navy); text-underline-offset: 3px; }
