:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #fbf8f4;
  --surface-dark: #0f0f10;
  --text: #171412;
  --muted: #6e6459;
  --line: rgba(23, 20, 18, 0.08);
  --line-strong: rgba(23, 20, 18, 0.16);
  --green: #6f8a7b;
  --green-deep: #52675b;
  --shadow: 0 18px 48px rgba(33, 22, 10, 0.08);
  --radius: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 92, 70, 0.05), transparent 26%),
    linear-gradient(180deg, #fdfcf9 0%, #f6f2eb 100%);
}

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down-soft {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in-soft {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.page-shell {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 4px 26px;
  animation: fade-down-soft 0.7s ease both;
}

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

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-header {
  width: 168px;
  mix-blend-mode: multiply;
}

.brand-logo-footer {
  width: 168px;
  filter: none;
  mix-blend-mode: normal;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a,
.header-cta,
.button,
.service-body a,
.footer-column a,
.footer-legal a,
.social-row a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
  transform: translateY(-1px);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.header-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
}

.header-cta {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(38, 44, 39, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.header-cta svg,
.button svg,
.service-badge svg,
.feature-item svg,
.process-card svg,
.benefit-item svg,
.reference-placeholder svg,
.contact-row svg,
.faq-list summary svg,
.social-row svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta svg,
.button svg {
  transition: transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(38, 44, 39, 0.18);
  filter: saturate(1.04);
}

.header-cta:hover svg,
.header-cta:focus-visible svg,
.button:hover svg,
.button:focus-visible svg {
  transform: translateX(2px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 26px;
}

.hero-copy {
  padding: 20px 0;
  animation: fade-up-soft 0.8s ease 0.12s both;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 5.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-accent-line {
  width: 76px;
  height: 4px;
  margin: 32px 0 22px;
  border-radius: 999px;
  background: #96b0a6;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(38, 44, 39, 0.18);
  filter: saturate(1.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(82, 103, 91, 0.3);
  box-shadow: 0 14px 24px rgba(33, 22, 10, 0.08);
  color: var(--green-deep);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 620px;
  animation: fade-up-soft 0.95s ease 0.22s both;
}

.hero-image-shape {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 32%);
  overflow: hidden;
  border-radius: 28px;
}

.hero-image-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.08), rgba(15, 15, 16, 0.06));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-floating-card {
  position: absolute;
  left: 26px;
  right: auto;
  bottom: 34px;
  width: 250px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 20, 18, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 24px 50px rgba(33, 22, 10, 0.12);
  animation: float-in-soft 0.9s ease 0.42s both;
}

.floating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 6px 0;
}

.floating-row + .floating-row {
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.floating-row span {
  color: #1b1917;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-floating-card svg {
  width: 30px;
  height: 30px;
  color: #111111;
  stroke-width: 1.75;
  flex: 0 0 auto;
}

.hero-floating-card svg path,
.hero-floating-card svg circle,
.hero-floating-card svg rect,
.hero-floating-card svg line,
.hero-floating-card svg polyline {
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  animation: fade-up-soft 0.8s ease 0.3s both;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 18px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--line);
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-section {
  padding-top: 28px;
  animation: fade-up-soft 0.85s ease 0.38s both;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-image {
  height: 208px;
  background-position: center;
  background-size: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.service-image-roof {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.04)),
    url("service-cisteni-strech.png");
}

.service-image-metal {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.04)),
    url("service-natery-plechovych-strech.png");
}

.service-image-gutter {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.04)),
    url("service-cisteni-okapu.png");
}

.service-badge {
  position: absolute;
  top: 178px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  color: #fff;
  box-shadow: 0 14px 26px rgba(20, 92, 70, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-body {
  padding: 48px 24px 24px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 700;
  transition: gap 220ms ease, color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 92, 70, 0), rgba(20, 92, 70, 0.05));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(20, 92, 70, 0.24);
  box-shadow: 0 24px 40px rgba(20, 92, 70, 0.12);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:hover .service-image,
.service-card:focus-within .service-image {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.service-card:hover .service-badge,
.service-card:focus-within .service-badge {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 18px 30px rgba(20, 92, 70, 0.22);
}

.service-card:hover .service-body a,
.service-card:focus-within .service-body a {
  gap: 12px;
}

.process-section {
  position: relative;
  margin-top: 28px;
  padding: 38px 26px 34px;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, #0f0f10, #181818);
  animation: fade-up-soft 0.85s ease 0.46s both;
}

.process-wire {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  opacity: 0.12;
  pointer-events: none;
}

.process-wire-left {
  left: -24px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.22) 40% 41%, transparent 41%),
    linear-gradient(180deg, transparent 18%, rgba(255, 255, 255, 0.18) 18% 19%, transparent 19%),
    linear-gradient(90deg, transparent 26%, rgba(255, 255, 255, 0.16) 26% 27%, transparent 27%);
}

.process-wire-right {
  right: -24px;
  background:
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.22) 40% 41%, transparent 41%),
    linear-gradient(180deg, transparent 18%, rgba(255, 255, 255, 0.18) 18% 19%, transparent 19%),
    linear-gradient(90deg, transparent 74%, rgba(255, 255, 255, 0.16) 74% 75%, transparent 75%);
}

.process-section h2 {
  margin: 0 0 28px;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.process-card {
  position: relative;
  padding: 18px 10px 0;
  text-align: center;
}

.step-dot {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: #fff;
}

.process-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.benefits-section {
  padding: 34px 0 0;
  animation: fade-up-soft 0.85s ease 0.52s both;
}

.benefits-section h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.benefit-item {
  text-align: center;
  padding: 4px 12px;
}

.benefit-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

.benefit-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-founder-section {
  margin-top: 28px;
  animation: fade-up-soft 0.85s ease 0.58s both;
}

.about-founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(20, 92, 70, 0.06), rgba(255, 255, 255, 0.96) 24%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.about-founder-intro {
  padding-right: 18px;
  border-right: 1px solid rgba(20, 92, 70, 0.16);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder-intro h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.about-founder-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.about-founder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.reference-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  animation: fade-up-soft 0.85s ease 0.64s both;
}

.reference-placeholder {
  min-height: 170px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(23, 20, 18, 0.2);
  border-radius: 14px;
  background: rgba(23, 20, 18, 0.02);
}

.reference-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(23, 20, 18, 0.42);
}

.reference-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reference-copy h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.reference-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  margin-top: 24px;
  animation: fade-up-soft 0.85s ease 0.7s both;
}

.faq-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.faq-card,
.contact-card {
  padding: 22px;
}

.faq-card h2,
.contact-card h2 {
  margin: 0 0 18px;
  font-size: 1.85rem;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 103, 91, 0.2);
  box-shadow: 0 10px 18px rgba(33, 22, 10, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-row + .contact-row {
  margin-top: 18px;
}

.contact-row span {
  font-size: 1.02rem;
  font-weight: 600;
}

.contact-row a {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-row a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.contact-form-callout {
  display: grid;
  gap: 12px;
  margin-bottom: 4px;
  padding: 14px;
  border: 1px solid rgba(20, 92, 70, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 92, 70, 0.06), rgba(255, 255, 255, 0.94));
}

.contact-form-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.required-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.required-marker {
  color: #b24343;
  font-weight: 800;
}

.form-feedback {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-feedback.is-success {
  border: 1px solid rgba(20, 92, 70, 0.22);
  background: rgba(20, 92, 70, 0.08);
  color: #145c46;
}

.form-feedback.is-error {
  border: 1px solid rgba(171, 49, 49, 0.18);
  background: rgba(171, 49, 49, 0.08);
  color: #8d2e2e;
}

.button-call {
  width: 100%;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.button-call svg {
  width: 18px;
  height: 18px;
}

.contact-form label {
  display: block;
}

.form-upload {
  padding: 12px 14px;
  border: 1px dashed rgba(20, 92, 70, 0.22);
  border-radius: 14px;
  background: rgba(20, 92, 70, 0.03);
}

.form-field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-upload input[type="file"] {
  display: block;
  width: 100%;
  color: var(--muted);
  font: inherit;
}

.form-helper {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.legal-sections {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.legal-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-panel h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
}

.legal-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.legal-panel a {
  color: var(--green);
  text-decoration: none;
}

.legal-panel a:hover {
  text-decoration: underline;
}

.legal-page-shell {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.legal-page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.legal-page-logo {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.legal-page-card h1 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.legal-page-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-page-card p:last-child {
  margin-bottom: 0;
}

.legal-page-card a {
  color: var(--green);
  text-decoration: none;
}

.legal-page-card a:hover,
.back-link:hover {
  text-decoration: underline;
}

.site-footer {
  width: 100%;
  margin-top: 28px;
  padding: 0;
  animation: fade-up-soft 0.85s ease 0.78s both;
}

.footer-panel-wrap {
  overflow: hidden;
  border: 1px solid rgba(20, 92, 70, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(20, 92, 70, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
  box-shadow: 0 18px 38px rgba(35, 24, 12, 0.06);
}

.footer-upper {
  display: grid;
  grid-template-columns: minmax(165px, 0.72fr) minmax(260px, 1fr) minmax(320px, 1.02fr);
  gap: 14px;
  padding: 14px 24px 10px;
}

.footer-logo-column,
.footer-copy-column,
.footer-right-column {
  min-width: 0;
}

.footer-logo-column {
  display: grid;
  place-items: center;
  padding: 0 10px 0 0;
}

.footer-copy-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  border-left: 2px solid rgba(20, 92, 70, 0.28);
}

.footer-copy-column h2 {
  margin: 0;
  font-size: clamp(1.58rem, 2.1vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  max-width: 310px;
}

.footer-copy-line {
  width: 58px;
  height: 3px;
  margin: 10px 0 10px;
  border-radius: 999px;
  background: #7aa38f;
}

.footer-copy-column p {
  max-width: 344px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-right-column {
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(23, 20, 18, 0.08);
}

.footer-social-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.footer-circle-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 92, 70, 0.08);
  color: var(--green);
  transition: transform 180ms ease, background-color 180ms ease;
}

.footer-circle-icon svg,
.footer-contact-grid svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-logo-mark {
  display: block;
  width: 16px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.footer-social-copy h3,
.footer-contact-head h3 {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-social-copy {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-row a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  transform: translateY(-2px);
  color: var(--green-deep);
  border-color: rgba(82, 103, 91, 0.28);
  box-shadow: 0 12px 22px rgba(33, 22, 10, 0.06);
}

.social-row svg {
  width: 20px;
  height: 20px;
}

.footer-contact-card {
  margin-top: 10px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 241, 0.92));
  box-shadow: 0 12px 26px rgba(33, 22, 10, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.footer-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(33, 22, 10, 0.08);
  border-color: rgba(82, 103, 91, 0.18);
}

.footer-contact-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
}

.footer-contact-divider {
  height: 2px;
  margin: 10px 0 12px;
  background: rgba(20, 92, 70, 0.68);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.footer-contact-grid a,
.footer-contact-grid p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.45;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-contact-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 103, 91, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.footer-contact-grid a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}

.footer-contact-grid svg {
  color: var(--green);
  flex: 0 0 auto;
}

.footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px 12px;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-circle-icon-small {
  width: 28px;
  height: 28px;
  background: rgba(20, 92, 70, 0.06);
}

.footer-circle-icon-small svg {
  width: 18px;
  height: 18px;
}

.footer-copyright p,
.footer-legal a {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-separator {
  width: 1px;
  height: 22px;
  background: rgba(23, 20, 18, 0.14);
}

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

@media (max-width: 1100px) {
  .hero-section,
  .about-founder-card,
  .reference-section,
  .faq-contact-section,
  .footer-upper {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .service-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:nth-child(3),
    .benefit-item:nth-child(3) {
      border-left: none;
    }

  .footer-copy-column,
  .footer-right-column {
    border-left: none;
    padding-left: 0;
  }

  .footer-copy-column {
    padding-right: 0;
  }

  .about-founder-intro {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: none;
    border-bottom: 1px solid rgba(20, 92, 70, 0.16);
  }

  .footer-social-header {
    grid-template-columns: auto 1fr;
  }

  .social-row {
    margin-top: 14px;
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding-bottom: 18px;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo-header {
    width: 144px;
  }

  .main-nav {
    gap: 4px 8px;
  }

  .main-nav a {
    padding: 6px 8px;
    font-size: 0.88rem;
  }

  .header-cta {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-section {
    gap: 18px;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
    line-height: 1.02;
  }

  .hero-accent-line {
    margin: 22px 0 16px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

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

  .hero-actions,
  .feature-strip,
  .service-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-item + .feature-item {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    min-height: auto;
    justify-content: stretch;
  }

  .hero-image-shape {
    min-height: 360px;
    height: 360px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
    border-radius: 24px;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    padding: 12px 14px;
  }

  .floating-row {
    min-height: 64px;
    gap: 12px;
  }

  .floating-row span {
    font-size: 0.86rem;
  }

  .process-grid::before {
    display: none;
  }

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

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer {
    border-radius: 22px;
  }

  .footer-panel-wrap {
    border-radius: 22px;
  }

  .footer-upper {
    padding: 24px 22px 20px;
  }

  .footer-copy-column h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .social-row a {
    width: 56px;
    height: 56px;
  }

  .footer-lower {
    padding: 16px 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
