.agr-hero-section {
  position: relative;
  min-height: 480px;
}
.agr-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.agr-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  inset: 0;
}
.agr-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px 120px;
  max-width: 900px;
  margin: 0 auto;
}
.agr-eyebrow {
  display: inline-block;
  background: hsla(47.76, 100%, 50%, 1);
  color: #3A2D00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.agr-h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  white-space: pre-wrap;
  text-align: center;
}
.agr-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  max-width: 680px;
  margin-bottom: 32px;
  text-align: center;
  white-space: pre-wrap;
}
.agr-hero-cta {
  margin-top: 8px;
}
.agr-section-divider-wrap {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.agr-body-section {
  background: #fff;
}
.agr-body-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}
.agr-body-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
}
.agr-body-content h2:first-child {
  margin-top: 0;
}
.agr-body-content p {
  line-height: 1.7;
  margin-bottom: 0;
}
.agr-gallery-section {
  background: #f7f7f5;
  padding: 0 0 72px;
}
.agr-gallery-heading {
  padding: 60px 24px 32px;
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
}
.agr-gallery-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.agr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.agr-gallery-item-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: #e0e0e0;
}
.agr-gallery-item-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-grid-item:hover .agr-gallery-item-wrapper img {
  transform: scale(1.03);
}
.agr-cta-section {
  background: #000;
  padding: 72px 24px;
}
.agr-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.agr-cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
}
.agr-cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

/* Pricing callout */
.agr-price-callout {
  display: inline-block;
  background: hsla(47.76, 100%, 50%, 1);
  color: #3A2D00;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 28px;
  margin: 20px auto 8px;
  letter-spacing: 0.02em;
}

/* Section headings shared */
.agr-section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.agr-section-subheading {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Process section */
.agr-process-section {
  background: #fff;
}
.agr-process-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}
.agr-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.agr-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #f7f7f5;
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid hsla(47.76, 100%, 50%, 1);
}
.agr-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: hsla(47.76, 100%, 50%, 1);
  color: #3A2D00;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agr-step-body {
  flex: 1;
}
.agr-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 10px;
}
.agr-step-desc {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* FAQ section */
.agr-faq-section {
  background: #f7f7f5;
}
.agr-faq-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}
.agr-faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.agr-faq-item {
  border-top: 1px solid #e0e0e0;
  padding: 28px 0;
}
.agr-faq-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.agr-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.agr-faq-a {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* Service area section */
.agr-service-area-section {
  background: #fff;
}
.agr-service-area-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.agr-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.agr-area-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  background: #f7f7f5;
  transition: background 0.2s, border-color 0.2s;
}
a.agr-area-pill:hover {
  background: hsla(47.76, 100%, 50%, 0.12);
  border-color: hsla(47.76, 100%, 45%, 1);
}

/* Guarantee section */
.agr-guarantee-section {
  background: #fff;
}
.agr-guarantee-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px;
}
.agr-guarantee-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
}
.agr-guarantee-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.agr-guarantee-badge-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}
.agr-guarantee-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}
.agr-guarantee-text blockquote {
  border-left: 3px solid hsla(47.76, 100%, 50%, 1);
  margin: 0 0 16px 0;
  padding-left: 16px;
}
.agr-guarantee-text blockquote p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin: 0;
}
.agr-guarantee-text blockquote:last-child {
  margin-bottom: 0;
}

/* More Recent Work section */
.agr-recent-work-section {
  background: #fff;
}
.agr-recent-work-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.agr-recent-work-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 40px;
}
.agr-recent-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.agr-recent-work-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: #e0e0e0;
  margin: 0;
}
.agr-recent-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  transition: transform 0.4s ease;
}
.agr-recent-work-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .agr-gallery-grid {
    grid-template-columns: 1fr;
  }
  .agr-recent-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .agr-hero-content {
    padding: 60px 16px 100px;
  }
  .agr-guarantee-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .agr-guarantee-badge-wrap {
    width: auto;
  }
  .agr-step {
    gap: 16px;
    padding: 20px 16px;
  }
}
