:root {
  --bg: #f3efe4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 253, 247, 0.9);
  --ink: #10242b;
  --muted: #53656b;
  --line: rgba(16, 36, 43, 0.14);
  --teal: #1e6d73;
  --teal-dark: #154e52;
  --coral: #d46f4d;
  --shadow: 0 22px 55px rgba(21, 48, 50, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 111, 77, 0.18), transparent 28%),
    radial-gradient(circle at right 20%, rgba(30, 109, 115, 0.16), transparent 22%),
    linear-gradient(180deg, #f7f3e8 0%, var(--bg) 100%);
  color: var(--ink);
}

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.page-hero,
.section,
.cta-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  background: rgba(255, 251, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(21, 48, 50, 0.1);
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  font-size: 0.95rem;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span,
.site-nav a,
.hero-text,
.section p,
.cta-section p,
.site-footer p,
.pricing-note,
.workflow-header span,
.workflow-steps p,
.contact-grid a,
.page-hero p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.hero {
  padding: 5rem 3rem 3rem;
  margin-top: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(243, 239, 228, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.hero-home {
  min-height: 82vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    url("assets/retianer-hero.png");
  background-size: cover;
  background-position: center 42%;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-copy,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy-wide {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0.25rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  max-width: 16ch;
  color: #f8fbf7;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 1rem auto 0;
  max-width: 44ch;
  color: rgba(248, 251, 247, 0.95);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  max-width: 14ch;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: 700;
}

.hero-text,
.section p,
.cta-section p,
.page-hero p,
.site-footer p {
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-actions-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(30, 109, 115, 0.22);
}

.feature-card,
.pricing-card,
.quote-card,
.contact-page-card,
.cta-section {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.workflow-widget {
  margin-top: 1.5rem;
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 238, 210, 0.86), rgba(232, 247, 238, 0.84) 52%, rgba(255, 247, 204, 0.85));
  border: 1px solid rgba(16, 36, 43, 0.09);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 48, 50, 0.1);
}

.workflow-section {
  max-width: 980px;
}

.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.workflow-header p,
.workflow-header span {
  margin: 0;
}

.workflow-header p {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.workflow-header span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 43, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(21, 48, 50, 0.07);
}

.workflow-steps li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
}

.workflow-steps li:nth-child(1)::before {
  background: linear-gradient(180deg, #e46447 0%, #f29b52 100%);
}

.workflow-steps li:nth-child(2)::before {
  background: linear-gradient(180deg, #f0b429 0%, #ffd86b 100%);
}

.workflow-steps li:nth-child(3)::before {
  background: linear-gradient(180deg, #22a06b 0%, #71d99e 100%);
}

.workflow-number {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e46447 0%, #f29b52 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.workflow-steps li:nth-child(2) .workflow-number {
  background: linear-gradient(135deg, #f0b429 0%, #ffd86b 100%);
  color: #473100;
}

.workflow-steps li:nth-child(3) .workflow-number {
  background: linear-gradient(135deg, #22a06b 0%, #71d99e 100%);
}

.workflow-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  line-height: 1.25;
}

.workflow-steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  padding: 2.25rem 0 0;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.feature-grid,
.about-layout {
  display: grid;
  gap: 1rem;
}

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

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

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

.feature-card,
.pricing-card,
.quote-card,
.contact-page-card {
  padding: 1.5rem;
}

.feature-link-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feature-link-card .button {
  width: fit-content;
}

.feature-card p {
  margin: 0.8rem 0 0;
}

.pricing-layout,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-layout-single {
  grid-template-columns: 1fr;
}

.pricing-card-wide {
  max-width: 620px;
}

.pricing-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pricing-row strong {
  font-size: 2.85rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pricing-row span {
  color: var(--muted);
  font-weight: 500;
}

.pricing-note {
  margin: 1rem 0 0;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.quote-card {
  display: grid;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.92)),
    var(--surface);
}

.quote-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.quote-card footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 2.2rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 111, 77, 0.17), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 224, 0.9));
}

.cta-section h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.cta-section > p {
  max-width: 58ch;
  margin: 1rem auto 0;
}

.page-hero {
  margin-top: 1.5rem;
  padding: 4rem 3rem 3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 240, 228, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.page-hero-services::before,
.page-hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 232, 0.96), rgba(247, 243, 232, 0.78)),
    url("assets/retianer-hero.png");
  background-size: cover;
  background-position: right center;
  opacity: 0.2;
}

.contact-page-card {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.service-card h3 {
  margin-top: 0.4rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.service-card-header h3 {
  margin: 0;
}

.thickness-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-price-list {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.65rem;
}

.service-card .pricing-row {
  margin-top: 0.7rem;
}

.service-card .pricing-row strong {
  font-size: 2.2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-grid a {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.contact-grid-stacked {
  flex-direction: column;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .workflow-steps,
  .feature-grid,
  .feature-grid-three,
  .pricing-layout,
  .about-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-wide,
  .contact-page-card {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.4rem;
  }

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

  .hero,
  .page-hero {
    padding: 3.2rem 1.35rem 1.5rem;
  }

  .workflow-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
}


.page-hero {
  background: transparent;
}

.page-hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(247, 243, 232, 0.05), rgba(247, 243, 232, 0.01)),
    url("assets/services-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.page-hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/contact-hero.png");
  background-size: cover;
  background-position: left center;
  opacity: 1;
}

.page-hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(247, 243, 232, 0.18), rgba(247, 243, 232, 0.04)),
    url("assets/contact-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.contact-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 251, 242, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 62, 64, 0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 109, 115, 0.45);
  box-shadow: 0 0 0 4px rgba(30, 109, 115, 0.12);
}

.required-badge {
  display: inline-block;
  margin-left: 0.28rem;
  color: #c65a3a;
  font-weight: 800;
  font-size: 0.95em;
  vertical-align: baseline;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy p,
.info-card p {
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 251, 242, 0.82);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.footer-meta {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  opacity: 0.88;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--ink);
}

.legal-card {
  border-radius: 24px;
  background: rgba(255, 251, 242, 0.82);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.legal-card h2 {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  max-width: none;
}

.legal-card p,
.legal-card ul {
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .story-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.2rem;
  }
}


.page-hero-services h1,
.page-hero-about h1,
.page-hero-contact h1 {
  color: #3d7578;
}
