/* Northfork Home Pros — homepage concept
   Warm cream, charcoal, wood, forest green. No blue. */

:root {
  --cream: #f4efe6;
  --cream-deep: #ebe3d4;
  --cream-paper: #f7f3ea;
  --white: #fcfaf5;
  --charcoal: #2a2622;
  --charcoal-soft: #3d3833;
  --ink: #2a2622;
  --muted: #6b635a;
  --line: #d8cfc0;
  --wood: #a67c52;
  --wood-light: #c4a574;
  --forest: #3e5647;
  --forest-soft: #5a7263;
  --forest-wash: #e4ebe4;
  --orange: #d96b2b;
  --orange-hover: #c45c20;
  --orange-deep: #b44e18;
  --shadow: 0 10px 28px rgba(42, 38, 34, 0.08);
  --shadow-lg: 0 22px 50px rgba(42, 38, 34, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --header-h: 78px;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 48px);
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    url("images/paper-texture.jpg"),
    linear-gradient(180deg, #f3eee4 0%, var(--cream) 18%, #f6f1e8 60%, #efe8db 100%);
  background-size: 420px, auto;
  background-blend-mode: multiply, normal;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.5rem 0.8rem;
  z-index: 80;
}
.skip-link:focus {
  top: 0.6rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 800px) {
  .section {
    padding: 6.4rem 0;
  }
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.7rem;
}

.eyebrow.light {
  color: #c5d1c6;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.15rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 0.45rem;
}

.lede,
.section-lead {
  color: var(--muted);
  max-width: 40rem;
}

.lede {
  font-size: 1.14rem;
  color: #ece6da;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--orange);
  color: #fff8f2;
  box-shadow: 0 8px 20px rgba(217, 107, 43, 0.28);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 239, 230, 0.45);
}

.btn-secondary:hover {
  background: rgba(244, 239, 230, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 239, 230, 0.35);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.62rem 1rem;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--forest);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline;
}

.text-link:hover {
  color: var(--orange-deep);
}

/* Sample disclaimer */
.sample-banner {
  background: #24352c;
  color: #f3eee4;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 0.48rem 1rem;
}

/* Header */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header {
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 38, 34, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(42, 38, 34, 0.06);
}

.header-inner {
  width: min(100% - 1.6rem, 1240px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--cream-deep);
  border-radius: 12px;
  border: 1px solid rgba(42, 38, 34, 0.06);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}

.nav-desktop {
  display: none;
  gap: 1.15rem;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}

.nav-desktop a:hover {
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.header-actions .btn-sm {
  display: inline-flex;
}

.btn-short {
  display: inline;
}

.btn-full {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--charcoal);
}

.nav-mobile {
  display: grid;
  gap: 0.35rem;
  padding: 0.4rem 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
  background: var(--cream-paper);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a,
.nav-mobile button {
  text-align: left;
}

.nav-mobile a {
  padding: 0.55rem 0;
  font-weight: 500;
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
  .header-phone {
    display: inline-flex;
  }
  .btn-short {
    display: none;
  }

  .btn-full {
    display: inline;
  }
  .header-actions {
    margin-left: 0;
  }
  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 38, 34, 0.18) 0%, rgba(42, 38, 34, 0.28) 38%, rgba(32, 27, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(32, 27, 22, 0.45) 0%, rgba(32, 27, 22, 0.08) 62%);
}

.hero-copy {
  position: relative;
  padding: 5.5rem 0 3.4rem;
  max-width: 760px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  width: min(100% - 2rem, 720px);
}

.hero .eyebrow {
  color: #d7c4a4;
}

.hero h1 {
  color: #f7f1e6;
  text-shadow: 0 2px 24px rgba(20, 16, 12, 0.28);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.85rem;
}

.hero-note {
  color: #cfc4b3;
  font-size: 0.92rem;
}

.hero-note.light {
  color: #c5b9a8;
}

/* Trust */
.trust-bar {
  background: var(--charcoal);
  color: #e8e0d2;
  padding: 0.95rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-row span {
  color: var(--wood-light);
  opacity: 0.7;
}

/* Services — light broken grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid rgba(42, 38, 34, 0.07);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.svc-repairs {
  padding: 0;
  overflow: hidden;
  display: grid;
}

.svc-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.svc-body {
  padding: 1.25rem 1.25rem 1.4rem;
}

.svc-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--forest-wash);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.svc-icon svg {
  width: 22px;
  height: 22px;
}

.svc-card p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.svc-emergency {
  background: linear-gradient(180deg, #f8f1e6 0%, #f3e6d4 100%);
  border-color: rgba(217, 107, 43, 0.18);
}

.svc-emergency .svc-icon {
  background: rgba(217, 107, 43, 0.12);
  color: var(--orange-deep);
}

@media (min-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.05rem;
    align-items: stretch;
  }
  .svc-repairs {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    grid-template-rows: 1.05fr 0.95fr;
  }
  .svc-photo img {
    height: 100%;
    min-height: 230px;
  }
  .svc-remodel {
    grid-column: 8 / 13;
  }
  .svc-exterior {
    grid-column: 8 / 13;
  }
  .svc-handy {
    grid-column: 1 / 7;
  }
  .svc-emergency {
    grid-column: 7 / 13;
  }
}

@media (min-width: 1080px) {
  .svc-repairs {
    grid-column: 1 / 7;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: 1fr;
  }
  .svc-photo img {
    min-height: 100%;
  }
  .svc-remodel {
    grid-column: 7 / 13;
  }
  .svc-exterior {
    grid-column: 7 / 10;
  }
  .svc-handy {
    grid-column: 10 / 13;
  }
  .svc-emergency {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 1.4rem;
  }
  .svc-emergency .svc-icon {
    margin: 0;
  }
  .svc-emergency-copy p {
    margin: 0;
  }
}

/* Projects */
.work {
  background:
    linear-gradient(180deg, transparent 0%, rgba(228, 235, 228, 0.35) 18%, rgba(228, 235, 228, 0.28) 80%, transparent 100%);
}

.projects-grid {
  display: grid;
  gap: 1.4rem;
}

.project {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(42, 38, 34, 0.06);
  box-shadow: var(--shadow);
}

.project-photo {
  overflow: hidden;
}

.project-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project:hover .project-photo img {
  transform: scale(1.035);
}

.project-meta {
  padding: 1.15rem 1.2rem 1.3rem;
}

.project-place {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-meta p:last-child {
  color: var(--muted);
}

.work-foot {
  margin-top: 1.8rem;
  color: var(--muted);
}

@media (min-width: 800px) {
  .projects-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.35rem 1.25rem;
  }
  .project-photo img {
    height: 280px;
  }
  .project-offset {
    margin-top: 2.4rem;
  }
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(42, 38, 34, 0.07);
  box-shadow: var(--shadow);
}

.why-num {
  display: block;
  font-family: var(--display);
  color: var(--wood);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.why-card p {
  color: var(--muted);
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 799px) and (min-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Area */
.area {
  padding-top: 2rem;
}

.area-layout {
  display: grid;
  gap: 2.2rem;
}

.city-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
  margin: 1.4rem 0 1rem;
}

.city-list li {
  position: relative;
  padding-left: 0.9rem;
  font-weight: 500;
}

.city-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
}

.area-note {
  color: var(--muted);
}

.area-note a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.area-map {
  background: var(--white);
  border-radius: 22px;
  padding: 1.1rem 1rem 0.7rem;
  border: 1px solid rgba(42, 38, 34, 0.07);
  box-shadow: var(--shadow);
}

.area-map figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.4rem;
  padding-left: 0.4rem;
}

.map-land {
  fill: #dfe6dc;
  stroke: #3e5647;
  stroke-width: 2;
}

.map-river {
  fill: none;
  stroke: #b9a078;
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.65;
}

.map-river-label {
  fill: #8a7a62;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
}

.map-pin circle {
  fill: #f4efe6;
  stroke: #3e5647;
  stroke-width: 1.6;
}

.map-pin .map-dot {
  fill: #d96b2b;
  stroke: none;
}

.map-pin text {
  fill: #2a2622;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 600;
}

@media (min-width: 900px) {
  .area-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 3rem;
  }
  .city-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Process */
.process-grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.45rem;
  border: 1px solid rgba(42, 38, 34, 0.07);
  box-shadow: var(--shadow);
}

.process-step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.process-card p {
  color: var(--muted);
}

@media (min-width: 800px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    position: relative;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--wood-light) 0 10px, transparent 10px 18px);
    opacity: 0.7;
    z-index: 0;
  }
  .process-card {
    position: relative;
    z-index: 1;
  }
}

/* Final CTA */
.final-cta {
  background:
    linear-gradient(180deg, rgba(42, 38, 34, 0.18), rgba(42, 38, 34, 0.42)),
    url("images/toolbox.jpg") center/cover;
  color: var(--cream);
  padding: 5.4rem 0;
}

.final-cta-inner {
  max-width: 40rem;
}

.final-cta h2 {
  color: #f7f1e6;
}

.final-cta p {
  color: #e4d8c6;
}

/* Footer */
.site-footer {
  background: #231f1c;
  color: #d8d0c4;
  padding: 3.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.footer-brand p {
  margin-top: 0.8rem;
  max-width: 28rem;
  color: #b7aea2;
}

.site-footer h3 {
  color: #f4efe6;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.site-footer a:hover {
  color: #f0c19a;
}

.license {
  margin-top: 0.7rem;
  color: #b7aea2;
  font-size: 0.92rem;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.15rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: #e4d8c6;
}

.footer-base .concept-credit {
  font-size: 1.02rem;
  color: #efe4c8;
}

.concept-credit a {
  color: #d7c4a4;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 27, 22, 0.55);
}

.modal-panel {
  position: relative;
  width: min(100% - 1.4rem, 560px);
  margin: 5vh auto;
  max-height: 90vh;
  overflow: auto;
  background: var(--cream-paper);
  border-radius: 20px;
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.modal-intro {
  margin-bottom: 1.1rem;
  padding-right: 1.6rem;
}

.modal-intro p {
  color: var(--muted);
}

#estimate-form {
  display: grid;
  gap: 0.8rem;
}

.field-row {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 600px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--forest);
  outline-offset: 1px;
}

.form-fine {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-fine a {
  color: var(--forest);
  font-weight: 600;
}

.modal-success[hidden] {
  display: none;
}

.modal-success h2 {
  margin: 0.4rem 0 0.6rem;
}

.modal-success p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

html:has(body.page-festive) {
  scroll-padding-top: 168px;
}

/* Festive seasonal layer — 4th of July / all-American summer, still local and grounded */
.page-festive {
  --cream: #f4efe6;
  --cream-deep: #ebe3d4;
  --cream-paper: #f7f3ea;
  --forest: #3e5647;
  --forest-soft: #5a7263;
  --forest-wash: #e4ebe4;
  --wood: #a67c52;
  --wood-light: #c4a574;
  --orange: #d96b2b;
  --orange-hover: #c45c20;
  --orange-deep: #b44e18;
  --line: #d4c8b6;
  --navy: #1e3556;
  --navy-soft: #2c4a73;
  --navy-deep: #16263d;
  --flag-red: #b53a32;
  --flag-red-soft: #c85a4a;
  --star-white: #f7f4ee;
  --star: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background-image:
    url("images/paper-texture.jpg"),
    linear-gradient(90deg, rgba(30, 53, 86, 0.08) 0, transparent 36px),
    linear-gradient(270deg, rgba(181, 58, 50, 0.07) 0, transparent 36px),
    radial-gradient(ellipse 90% 42% at 50% 0%, rgba(30, 53, 86, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 46% 28% at 100% 16%, rgba(181, 58, 50, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #e8edf2 0%, #f4efe6 16%, #f6f1e8 48%, #ebe6dc 72%, #e7edf2 100%);
}

/* Patriotic side frame — stays with the viewport as the page scrolls */
.page-festive .page-sides {
  pointer-events: none;
}

.page-festive .page-side {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 45;
  width: 7px;
}

.page-festive .page-side-left {
  left: 0;
  background:
    linear-gradient(
      90deg,
      #1e3556 0 2px,
      #fffdf8 2px 4px,
      #b53a32 4px 6.5px,
      rgba(181, 58, 50, 0.16) 6.5px 7px
    );
}

.page-festive .page-side-right {
  right: 0;
  background:
    linear-gradient(
      90deg,
      rgba(181, 58, 50, 0.16) 0 0.5px,
      #b53a32 0.5px 3px,
      #fffdf8 3px 5px,
      #1e3556 5px 7px
    );
}

.page-festive .header-inner {
  width: min(100% - 2.4rem, 1240px);
}

.page-festive .container {
  width: min(100% - 2.5rem, var(--max));
}

.page-festive .sample-banner {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.page-festive .sample-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  background: #1e3556;
  color: #f3eee4;
  position: relative;
}

.page-festive .sf-back,
.page-festive .sf-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.page-festive .sf-back {
  background: #f4efe6;
  color: #1e3556;
}
.page-festive .sf-switch {
  background: transparent;
  color: #f4efe6;
  border: 1.5px solid #f4efe6;
}

.page-festive .sf-back:hover,
.page-festive .sf-back:focus-visible {
  background: #fff8ee;
  color: #16263d;
}

.page-festive .site-chrome {
  overflow: visible;
}

.page-festive .site-header {
  background: rgba(247, 243, 234, 0.96);
  border-bottom: 0;
  overflow: visible;
}

.page-festive .brand-mark {
  box-shadow: 0 0 0 2px #3e5647, 0 0 0 4px #b53a32;
}

.page-festive .brand-sub {
  color: #b53a32;
}

/* Clean patriotic ribbon — layered red / white / blue with quiet texture */
.page-festive .festoon {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  height: 13px;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22, 38, 61, 0.16);
}

.page-festive .festoon-stripe {
  position: relative;
  min-height: 0;
}

.page-festive .festoon-stripe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.14) 100%
  );
  pointer-events: none;
}

.page-festive .festoon-stripe-red {
  background-color: #b53a32;
}

.page-festive .festoon-stripe-white {
  background-color: #f7f4ee;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(30, 53, 86, 0.08);
}

.page-festive .festoon-stripe-blue {
  background-color: #1e3556;
}

.page-festive .festoon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/paper-texture.jpg");
  background-size: 280px auto;
  opacity: 0.28;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-festive .hero-media img {
  object-position: 46% 42%;
}

.page-festive .hero-shade {
  background:
    linear-gradient(180deg, rgba(22, 38, 61, 0.08) 0%, rgba(22, 38, 61, 0.12) 34%, rgba(18, 28, 42, 0.72) 100%),
    linear-gradient(90deg, rgba(18, 28, 42, 0.42) 0%, rgba(18, 28, 42, 0.04) 64%);
}

.page-festive .hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 214, 140, 0.22), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 196, 110, 0.16), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(80, 150, 190, 0.12), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(181, 58, 50, 0.08), transparent 22%);
}

.page-festive .hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 12% 22%, #f7f4ee 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 28% 14%, #f7f4ee 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 71% 18%, #f7f4ee 0 1px, transparent 1.6px),
    radial-gradient(circle at 88% 28%, #f7f4ee 0 0.7px, transparent 1.3px);
}

.page-festive .hero .eyebrow {
  color: #efc08a;
}

/* Shared seasonal chrome */
.page-festive .flag-stripe {
  height: 7px;
  background: linear-gradient(
    90deg,
    #b53a32 0 12%,
    #f7f4ee 12% 15%,
    #1e3556 15% 34%,
    #b53a32 34% 48%,
    #f7f4ee 48% 52%,
    #1e3556 52% 70%,
    #b53a32 70% 84%,
    #f7f4ee 84% 88%,
    #1e3556 88% 100%
  );
}

.page-festive .season-section {
  position: relative;
  overflow: hidden;
}

.page-festive .season-rule {
  position: absolute;
  left: 50%;
  top: 1.15rem;
  width: min(220px, 46vw);
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #b53a32 0 32%, #f7f4ee 32% 50%, #1e3556 50% 100%);
  box-shadow: 0 0 0 3px rgba(244, 239, 230, 0.7);
  z-index: 1;
}

.page-festive .season-sparkle {
  display: none;
}

.page-festive .trust-bar {
  position: relative;
  background:
    radial-gradient(circle at 8% 120%, rgba(181, 58, 50, 0.18), transparent 36%),
    radial-gradient(circle at 92% -20%, rgba(247, 244, 238, 0.08), transparent 32%),
    #1e3556;
  color: #f0e4d2;
  padding: 0 0 1.05rem;
}

.page-festive .trust-bar .flag-stripe {
  margin-bottom: 0.95rem;
}

.page-festive .trust-star {
  width: 10px;
  height: 10px;
  background: #f7f4ee;
  clip-path: var(--star);
  opacity: 0.85;
  flex: 0 0 auto;
}

/* 4th of July Special — giant banner across the hero */
.page-festive .hero {
  overflow: hidden;
}

.page-festive .july-flight {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.9rem 0 0.2rem;
}

.page-festive .july-plane-wrap {
  position: absolute;
  left: -10%;
  top: 0.2rem;
  width: min(56%, 220px);
  z-index: 4;
  pointer-events: none;
}

.page-festive .july-plane {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 18px rgba(8, 16, 28, 0.38));
}

.page-festive .july-banner {
  position: relative;
  width: 96%;
  margin-left: 2%;
  min-height: 292px;
  z-index: 2;
}

.page-festive .july-flag {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 22px rgba(8, 16, 28, 0.36));
}

.page-festive .july-special-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(16.4rem, 54%);
  margin: 3.2rem 8% 1.7rem auto;
  pointer-events: auto;
}

.page-festive .july-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e3556;
  margin-bottom: 0.4rem;
}

.page-festive .july-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #b53a32;
  clip-path: var(--star);
}

.page-festive .july-flight h2 {
  color: #1e3556;
  font-size: clamp(1.75rem, 7.4vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 0.45rem;
  text-shadow: 0 1px 0 rgba(247, 244, 238, 0.55);
}

.page-festive .july-offer {
  margin: 0 0 0.9rem;
  color: #2c3f5c;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 500;
}

.page-festive .btn-july {
  width: 100%;
  min-height: 50px;
  background: #1e3556;
  color: #f7f4ee;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(22, 38, 61, 0.28);
}

.page-festive .btn-july:hover {
  background: #16263d;
  color: #fffaf4;
}

.page-festive .btn-july:focus-visible {
  outline-color: #f7f4ee;
}

.page-festive .hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 1.6rem;
}

.page-festive .eyebrow {
  color: #1e3556;
}

.page-festive .eyebrow.light {
  color: #efc08a;
}

.page-festive .section-head h2 {
  position: relative;
}

.page-festive .svc-kicker {
  color: #b53a32;
}

.page-festive .svc-card,
.page-festive .project,
.page-festive .why-card,
.page-festive .process-card,
.page-festive .area-map {
  box-shadow: 0 12px 30px rgba(30, 53, 86, 0.08);
}

/* Services */
.page-festive .section.services {
  background:
    radial-gradient(ellipse 50% 40% at 0% 18%, rgba(181, 58, 50, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 80%, rgba(30, 53, 86, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(232, 237, 242, 0.35), transparent 22%);
}

.page-festive .svc-card {
  border-top: 4px solid #1e3556;
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box;
}

.page-festive .svc-repairs { border-top-color: #b53a32; }
.page-festive .svc-remodel { border-top-color: #1e3556; }
.page-festive .svc-exterior { border-top-color: #3e5647; }
.page-festive .svc-handy { border-top-color: #b53a32; }

.page-festive .svc-icon {
  background: rgba(30, 53, 86, 0.08);
  color: #1e3556;
}

.page-festive .svc-emergency {
  background: linear-gradient(180deg, #f8f4ee 0%, #f0e0d6 100%);
  border-color: rgba(181, 58, 50, 0.22);
  border-top-color: #b53a32;
}

.page-festive .svc-emergency .svc-icon {
  background: rgba(181, 58, 50, 0.12);
  color: #b53a32;
}

/* Recent work */
.page-festive .work {
  background:
    radial-gradient(ellipse 60% 36% at 80% 0%, rgba(30, 53, 86, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(214, 224, 232, 0.5) 0%, rgba(232, 222, 210, 0.28) 58%, rgba(244, 239, 230, 0.2) 100%);
}

.page-festive .project {
  position: relative;
  border-color: rgba(30, 53, 86, 0.1);
}

.page-festive .project-photo {
  position: relative;
}

.page-festive .project-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, #b53a32 0 34%, #f7f4ee 34% 50%, #1e3556 50% 100%);
}

.page-festive .project-place {
  color: #b53a32;
}

/* Why us */
.page-festive .section.why {
  background:
    radial-gradient(ellipse 45% 50% at 0% 80%, rgba(181, 58, 50, 0.06), transparent 60%),
    linear-gradient(180deg, #f6f1e8 0%, #f4efe6 100%);
}

.page-festive .why-card {
  position: relative;
  overflow: hidden;
  border-left: 4px solid #1e3556;
  background: #fffdf8;
}

.page-festive .why-card:nth-child(2) { border-left-color: #b53a32; }
.page-festive .why-card:nth-child(3) { border-left-color: #3e5647; }
.page-festive .why-card:nth-child(4) { border-left-color: #1e3556; }

.page-festive .why-card::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -10px;
  width: 72px;
  height: 72px;
  background: #1e3556;
  clip-path: var(--star);
  opacity: 0.06;
}

.page-festive .why-card:nth-child(2)::after { background: #b53a32; }
.page-festive .why-num {
  color: #b53a32;
}

/* Service area */
.page-festive .section.area {
  background:
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(30, 53, 86, 0.08), transparent 60%),
    linear-gradient(180deg, #eef2f6 0%, #f4efe6 48%, #f6f1e8 100%);
}

.page-festive .city-list li::before {
  width: 9px;
  height: 9px;
  border-radius: 0;
  background: #1e3556;
  clip-path: var(--star);
  top: 0.48em;
}

.page-festive .city-list li:nth-child(3n)::before { background: #b53a32; }
.page-festive .city-list li:nth-child(3n+2)::before { background: #3e5647; }

.page-festive .area-map {
  background:
    linear-gradient(180deg, rgba(30, 53, 86, 0.04), transparent 28%),
    #fffdf8;
  border-color: rgba(30, 53, 86, 0.12);
}

.page-festive .area-map figcaption {
  color: #1e3556;
}

.page-festive .map-land {
  fill: #d5dde8;
  stroke: #1e3556;
}

.page-festive .map-pin circle {
  fill: #f7f4ee;
  stroke: #1e3556;
}

.page-festive .map-pin .map-dot {
  fill: #b53a32;
}

/* Process */
.page-festive .section.process {
  background:
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(181, 58, 50, 0.06), transparent 55%),
    linear-gradient(180deg, #f4efe6 0%, #f7f3ea 100%);
}

.page-festive .process-card {
  background: #fffdf8;
  border-top: 3px solid #1e3556;
}

.page-festive .process-card:nth-child(2) { border-top-color: #b53a32; }
.page-festive .process-card:nth-child(3) { border-top-color: #3e5647; }

.page-festive .process-step {
  background: #1e3556;
  color: #f7f4ee;
}

.page-festive .process-card:nth-child(2) .process-step {
  background: #b53a32;
}

.page-festive .process-card:nth-child(3) .process-step {
  background: #3e5647;
}

.page-festive .process-grid::before {
  background: repeating-linear-gradient(90deg, #b53a32 0 8px, #f7f4ee 8px 12px, #1e3556 12px 20px, transparent 20px 28px);
  opacity: 0.85;
}

/* Final CTA */
.page-festive .final-cta {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 5.2rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 244, 238, 0.1), transparent 22%),
    radial-gradient(circle at 88% 80%, rgba(181, 58, 50, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 38, 61, 0.5), rgba(14, 24, 40, 0.76)),
    url("images/toolbox.jpg") center/cover;
}

.page-festive .final-cta .flag-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.page-festive .cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 30%, #f7f4ee 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 22% 62%, #f7f4ee 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 78% 28%, #f7f4ee 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 88% 70%, #f7f4ee 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 64% 18%, #f7f4ee 0 0.7px, transparent 1.3px);
  opacity: 0.55;
}

.page-festive .btn-primary {
  box-shadow: 0 8px 22px rgba(217, 107, 43, 0.34);
}

/* Footer + modal */
.page-festive .site-footer {
  position: relative;
  background: #121c2a;
  padding-top: 3.4rem;
}

.page-festive .site-footer .flag-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.page-festive .site-footer .brand-sub {
  color: #e8b4a8;
}

.page-festive .concept-credit a {
  color: #e0b078;
}

.page-festive .modal-panel {
  border-top: 5px solid #1e3556;
  background-image: linear-gradient(#b53a32, #b53a32), linear-gradient(#f7f4ee, #f7f4ee);
  background-size: 34% 5px, 16% 5px;
  background-repeat: no-repeat;
  background-position: left top, 34% top;
}

.page-festive .text-link:hover {
  color: #b53a32;
}

@media (max-width: 799px) {
  .page-festive .festoon {
    height: 11px;
  }
  .page-festive .season-rule {
    width: min(140px, 42vw);
    height: 3px;
    top: 0.85rem;
  }
  .page-festive .season-section {
    padding-top: 4.6rem;
  }
  .page-festive .season-sparkle {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image:
      radial-gradient(circle at 8% 20%, #1e3556 0 1.2px, transparent 1.8px),
      radial-gradient(circle at 92% 24%, #b53a32 0 1.3px, transparent 2px),
      radial-gradient(circle at 6% 78%, #b53a32 0 1.1px, transparent 1.7px),
      radial-gradient(circle at 94% 72%, #1e3556 0 1.2px, transparent 1.8px);
  }
  .page-festive .season-section > .container {
    position: relative;
    z-index: 1;
  }
  .page-festive .july-flight {
    padding: 0.55rem 0 0;
  }
  .page-festive .july-plane-wrap {
    left: -16%;
    top: 0.1rem;
    width: 48%;
  }
  .page-festive .july-banner {
    min-height: 300px;
  }
  .page-festive .july-special-copy {
    width: 52%;
    margin: 3.6rem 10% 1.5rem auto;
  }
  .page-festive .july-flight h2 {
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
  }
  .page-festive .july-offer {
    font-size: 0.86rem;
  }
  .page-festive .btn-july {
    width: 100%;
    min-height: 48px;
    padding-inline: 0.8rem;
    font-size: 0.94rem;
  }
  .page-festive .hero-copy {
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }
}

@media (min-width: 800px) {
  .page-festive .page-side {
    width: 13px;
  }
  .page-festive .page-side-left {
    background:
      linear-gradient(
        90deg,
        #1e3556 0 4px,
        #fffdf8 4px 7px,
        #b53a32 7px 11px,
        rgba(181, 58, 50, 0.12) 11px 13px
      );
    box-shadow: 3px 0 18px rgba(30, 53, 86, 0.05);
  }
  .page-festive .page-side-right {
    background:
      linear-gradient(
        90deg,
        rgba(181, 58, 50, 0.12) 0 2px,
        #b53a32 2px 6px,
        #fffdf8 6px 9px,
        #1e3556 9px 13px
      );
    box-shadow: -3px 0 18px rgba(30, 53, 86, 0.05);
  }

  .page-festive .hero {
    min-height: min(94vh, 900px);
    align-items: stretch;
  }
  .page-festive .july-flight {
    position: relative;
    padding: 0.85rem 0 0;
    width: 100%;
  }
  .page-festive .july-banner {
    width: 95%;
    margin-left: 2.5%;
    min-height: 400px;
  }
  .page-festive .july-plane-wrap {
    left: -1%;
    top: 1.4rem;
    width: min(40%, 420px);
  }
  .page-festive .july-special-copy {
    width: min(30rem, 46%);
    margin: 5.1rem 8% 2.7rem auto;
  }
  .page-festive .hero-copy {
    padding-top: 0.4rem;
    margin-top: auto;
  }
  .page-festive .july-flight h2 {
    font-size: clamp(2.45rem, 4vw, 3.6rem);
  }
  .page-festive .july-offer {
    font-size: 1.16rem;
  }
  .page-festive .btn-july {
    width: auto;
    min-width: 220px;
    min-height: 54px;
    padding-inline: 1.6rem;
    background: #b53a32;
    color: #f7f4ee;
    box-shadow: 0 10px 22px rgba(181, 58, 50, 0.28);
  }
  .page-festive .btn-july:hover {
    background: #c24a42;
    color: #fffaf4;
  }

  .page-festive .festoon {
    height: 16px;
  }

  .page-festive .season-section {
    padding-top: 6.8rem;
  }

  .page-festive .section-head h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin-top: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #b53a32 0 36%, #f7f4ee 36% 52%, #1e3556 52% 100%);
  }

  .page-festive .season-sparkle {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.42;
    background-image:
      radial-gradient(circle at 6% 22%, #1e3556 0 1.4px, transparent 2px),
      radial-gradient(circle at 94% 18%, #b53a32 0 1.5px, transparent 2.2px),
      radial-gradient(circle at 8% 78%, #b53a32 0 1.2px, transparent 1.8px),
      radial-gradient(circle at 96% 72%, #1e3556 0 1.3px, transparent 2px),
      radial-gradient(circle at 4% 48%, #f7f4ee 0 1.1px, transparent 1.8px);
  }

  .page-festive .season-section > .container,
  .page-festive .season-section > .area-layout {
    position: relative;
    z-index: 1;
  }

  .page-festive .why-card:nth-child(2),
  .page-festive .why-card:nth-child(4) {
    margin-top: 1.1rem;
  }
}

/* Motion is desktop-only, and only when the user has not asked to reduce it.
   Phones never run these — festive feel comes from the static flags and stripes. */
@media (min-width: 800px) and (prefers-reduced-motion: no-preference) {
  html:not(.save-power) .page-festive .svc-card,
  html:not(.save-power) .page-festive .project,
  html:not(.save-power) .page-festive .why-card,
  html:not(.save-power) .page-festive .process-card {
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }

  html:not(.save-power) .page-festive .svc-card:hover,
  html:not(.save-power) .page-festive .project:hover,
  html:not(.save-power) .page-festive .why-card:hover,
  html:not(.save-power) .page-festive .process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(30, 53, 86, 0.12);
  }

  html:not(.save-power) .page-festive .july-flight {
    animation:
      flight-enter 7.2s cubic-bezier(0.16, 1, 0.3, 1) both,
      flight-drift 16s 7.2s ease-in-out infinite alternate;
  }
  html:not(.save-power) .page-festive .july-plane-wrap {
    animation: plane-bob 5.2s ease-in-out infinite alternate;
  }
  html:not(.save-power) .page-festive .july-flag {
    animation: flag-billow 6s ease-in-out infinite alternate;
    transform-origin: 6% 50%;
  }

  html:not(.save-power) .page-festive .pennant {
    animation: pennant-sway var(--sway, 4.6s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
  }
}

@keyframes pennant-sway {
  from { transform: rotate(var(--rot, 0deg)) translateY(var(--d, 0px)); }
  to { transform: rotate(calc(var(--rot, 0deg) + var(--sway-amt, 4deg))) translateY(var(--d, 0px)); }
}

@keyframes flight-enter {
  from { transform: translateX(-46%); }
  to { transform: translateX(0); }
}

@keyframes flight-drift {
  from { transform: translateX(0) translateY(0); }
  to { transform: translateX(3.5%) translateY(-6px); }
}

@keyframes plane-bob {
  from { transform: translate(0, 4px) rotate(-1.2deg); }
  to { transform: translate(10px, -10px) rotate(1.4deg); }
}

@keyframes flag-billow {
  from { transform: rotate(0.5deg) skewX(-1.4deg); }
  to { transform: rotate(-0.7deg) skewX(1.6deg); }
}

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

  .page-festive .pennant,
  html.save-power .page-festive .pennant,
  .page-festive .july-flight,
  .page-festive .july-plane-wrap,
  .page-festive .july-flag,
  html.save-power .page-festive .july-flight,
  html.save-power .page-festive .july-plane-wrap,
  html.save-power .page-festive .july-flag {
    animation: none !important;
  }

  .project-photo img,
  .btn,
  .page-festive .svc-card,
  .page-festive .project,
  .page-festive .why-card,
  .page-festive .process-card {
    transition: none;
  }

  .btn:hover,
  .page-festive .svc-card:hover,
  .page-festive .project:hover,
  .page-festive .why-card:hover,
  .page-festive .process-card:hover {
    transform: none;
  }

  .project:hover .project-photo img {
    transform: none;
  }
}

html.save-power {
  scroll-behavior: auto;
}

html.save-power .page-festive .pennant,
html.save-power .page-festive .july-flight,
html.save-power .page-festive .july-plane-wrap,
html.save-power .page-festive .july-flag {
  animation: none !important;
}

html.save-power .project-photo img,
html.save-power .btn,
html.save-power .page-festive .svc-card,
html.save-power .page-festive .project,
html.save-power .page-festive .why-card,
html.save-power .page-festive .process-card {
  transition: none;
}

html.save-power .btn:hover,
html.save-power .page-festive .svc-card:hover,
html.save-power .page-festive .project:hover,
html.save-power .page-festive .why-card:hover,
html.save-power .page-festive .process-card:hover {
  transform: none;
}

html.save-power .project:hover .project-photo img {
  transform: none;
}
