:root {
  --primary: #1456A3;
  --secondary: #2F9D55;
  --accent: #B98024;
  --ink: #17191D;
  --muted: #5F6672;
  --line: #DDE3EA;
  --paper: #FFFFFF;
  --soft: #F4F7FA;
  --soft-2: #EEF5F1;
  --danger: #B42318;
  --shadow: 0 18px 50px rgba(17, 25, 40, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), white 20%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0.75rem max(1rem, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 227, 234, 0.88);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  overflow: hidden;
}

.brand-mark-image {
  background: white;
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.1;
}

.brand-lockup strong {
  font-size: 0.98rem;
}

.brand-lockup small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  min-height: 44px;
  padding: 0.78rem 0.9rem;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.site-nav a.is-active {
  background: color-mix(in srgb, var(--primary), white 88%);
  color: var(--primary);
}

.site-nav .nav-call {
  background: var(--ink);
  color: white;
  text-align: center;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 13, 18, 0.88) 0%, rgba(10, 13, 18, 0.66) 44%, rgba(10, 13, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 13, 18, 0.72), transparent 40%);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(5rem, 13vh, 8rem) 0 7.5rem;
  color: white;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #92DCA9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 8vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.65rem);
}

h3 {
  font-size: 1.16rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2.6vw, 1.35rem);
}

.hero-actions,
.cta-actions,
.admin-actions,
.review-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.1rem;
  border: 1px solid var(--primary);
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--primary), black 12%);
}

.button-light {
  background: white;
  border-color: white;
  color: var(--ink);
}

.button-light:hover {
  background: #F7FAFC;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 780px;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-contact-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-contact-bar a,
.hero-contact-bar span {
  min-height: 54px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
}

.section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.page-masthead {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    linear-gradient(135deg, rgba(20, 86, 163, 0.09), rgba(47, 157, 85, 0.08)),
    white;
  overflow: hidden;
}

.page-masthead-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.page-masthead h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.page-masthead p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
}

.page-masthead img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.global-product-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    linear-gradient(135deg, rgba(20, 86, 163, 0.1), rgba(47, 157, 85, 0.1)),
    white;
}

.global-product-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.global-product-hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(3.4rem, 10vw, 6.75rem);
  line-height: 0.88;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.global-product-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.global-logo-panel {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.global-logo-panel img {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.section-tint {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 1.1rem;
}

.section-heading.compact h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.about-grid,
.contact-grid,
.package-layout,
.cta-inner {
  display: grid;
  gap: 2rem;
}

.lead {
  color: var(--ink);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  gap: 0.9rem;
}

.stat-card,
.service-card,
.package-card,
.why-card,
.testimonial-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.stat-card {
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 2.15rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 750;
}

.card-grid,
.why-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.service-card > :not(.service-image) {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.service-card .service-topline {
  margin-top: 1.1rem;
}

.service-card ul {
  margin-bottom: 1.1rem;
}

.service-actions {
  margin-top: auto;
  padding-bottom: 1.1rem;
}

.service-actions .button,
.package-card .button-cart {
  width: 100%;
}

.button-cart {
  margin-top: 1rem;
  background: var(--secondary);
  border-color: var(--secondary);
}

.button-cart:hover {
  background: color-mix(in srgb, var(--secondary), black 12%);
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.service-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-index {
  color: var(--secondary);
  font-weight: 900;
}

.price-pill {
  max-width: 58%;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent), white 84%);
  color: #4B3210;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: right;
}

.service-card p,
.package-card p,
.why-card p {
  margin: 0.7rem 0 0;
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.package-layout {
  align-items: start;
}

.packages-section {
  background:
    linear-gradient(90deg, rgba(20, 86, 163, 0.08), transparent 48%),
    white;
}

.package-list {
  display: grid;
  gap: 1rem;
}

.package-card,
.why-card,
.testimonial-card {
  padding: 1.2rem;
}

.workflow-section {
  background: var(--ink);
  color: white;
}

.workflow-section .eyebrow,
.workflow-section p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-section h2,
.workflow-section h3 {
  color: white;
}

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}

.timeline-step p {
  margin-bottom: 0;
}

.why-card {
  border-left: 4px solid var(--secondary);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(10, 13, 18, 0.84), rgba(10, 13, 18, 0));
  color: white;
}

.gallery-card span,
.testimonial-card span,
.contact-methods span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-card span {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.stars {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.testimonial-card p {
  margin: 0;
}

.cta-band {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    linear-gradient(90deg, rgba(47, 157, 85, 0.96), rgba(20, 86, 163, 0.96)),
    var(--primary);
  color: white;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-inner {
  align-items: center;
}

.cta-actions {
  justify-content: start;
}

.contact-grid {
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-methods a,
.contact-methods p {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-methods strong {
  display: block;
  margin-top: 0.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.cart-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item,
.empty-cart {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
}

.cart-item {
  display: grid;
  gap: 1rem;
}

.cart-item h3 {
  margin-top: 0.2rem;
}

.cart-item p {
  margin: 0.55rem 0;
}

.cart-kind {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cart-controls button {
  min-height: 40px;
  min-width: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cart-controls button:last-child {
  color: var(--danger);
}

.cart-controls span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  font-weight: 900;
}

.quote-form {
  position: sticky;
  top: 96px;
}

.quote-form h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.payment-section {
  border-top: 1px solid var(--line);
}

.payment-layout {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.payment-copy {
  display: grid;
  gap: 0.85rem;
}

.payment-note {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  background: rgba(47, 157, 85, 0.1);
  color: var(--muted);
  font-weight: 750;
}

.payment-options {
  display: grid;
  gap: 1rem;
}

.payment-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.payment-card h3,
.payment-card p {
  margin: 0;
}

.payment-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.payment-kicker {
  width: fit-content;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 86, 163, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.2rem;
}

.payment-actions span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.85rem;
  border: 1px solid #C9D2DC;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 800;
}

.site-footer {
  padding: 2rem 0;
  background: #101216;
  color: white;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer small,
.site-footer .brand-lockup small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-grid nav,
.footer-contact,
.social-links {
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: grid;
  gap: 0.45rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.sticky-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--secondary);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.review-mode .sticky-contact {
  display: none;
}

.review-banner {
  position: sticky;
  top: 0;
  z-index: 45;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: #FFF7E8;
  border-bottom: 1px solid #F2C470;
  color: #3D2A0B;
}

.review-banner strong {
  font-size: 0.9rem;
}

.review-banner span {
  color: #5F4519;
}

.review-open {
  justify-self: start;
  min-height: 40px;
  padding: 0.6rem 0.8rem;
  border: 1px solid #D89D31;
  border-radius: 8px;
  background: white;
  color: #3D2A0B;
  font-weight: 900;
}

.section-feedback-button {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 8;
  min-height: 38px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #D89D31;
  border-radius: 8px;
  background: #FFF7E8;
  color: #3D2A0B;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(61, 42, 11, 0.12);
  cursor: pointer;
}

.review-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(10, 13, 18, 0.48);
}

.review-drawer.is-open {
  display: grid;
  justify-items: end;
}

.review-drawer-panel {
  width: min(100%, 480px);
  height: 100%;
  overflow: auto;
  padding: 1rem;
  background: white;
  box-shadow: var(--shadow);
}

.review-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 1.5rem;
}

.feedback-form,
.feedback-list {
  display: grid;
  gap: 0.85rem;
}

.feedback-list {
  margin-top: 1.2rem;
}

.feedback-list h3 {
  font-size: 1rem;
}

.feedback-list article {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.feedback-list p {
  margin: 0.35rem 0;
}

.feedback-status {
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--soft-2);
  color: #1D5D32;
  font-weight: 900;
}

.fallback {
  width: min(720px, calc(100% - 32px));
  margin: 10vh auto;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (min-width: 700px) {
  .hero-contact-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid,
  .card-grid,
  .why-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0.6rem 0.7rem;
  }

  .site-nav .nav-call {
    padding-inline: 1rem;
    border-radius: 8px;
  }

  .about-grid,
  .contact-grid,
  .package-layout,
  .cta-inner,
  .page-masthead-grid,
  .cart-layout,
  .payment-layout,
  .global-product-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .review-banner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    padding-bottom: 11rem;
  }

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

  .section-feedback-button {
    top: 8px;
    right: 8px;
  }
}

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