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

:root {
  --bg: #f8f1e4;
  --bg-soft: #fff9f0;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf8;
  --text: #1f1a14;
  --muted: #675d53;
  --border: rgba(45, 31, 17, 0.12);
  --accent: #c45b2e;
  --accent-dark: #8a3717;
  --olive: #5e6846;
  --shadow: 0 18px 50px rgba(42, 28, 14, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 91, 46, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(94, 104, 70, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8ef 0%, var(--bg) 48%, #f2eadb 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.hero,
.promo-strip,
.request-layout,
.two-column,
.price-grid {
  display: grid;
  gap: 24px;
}

.site-header {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 22px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 244, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff8ef;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 24px rgba(138, 55, 23, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a,
.language-switcher button,
.button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(196, 91, 46, 0.12);
}

.language-switcher {
  display: inline-flex;
  gap: 8px;
}

.language-switcher button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
}

.language-switcher button.active,
.language-switcher button:hover {
  color: #fff8ef;
  border-color: transparent;
  background: var(--olive);
}

.hero,
.promo-strip,
.page-hero,
.service-card,
.price-card,
.faq-list details,
.request-form,
.contact-card,
.text-block,
.site-footer {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  padding: 38px;
  border-radius: calc(var(--radius-lg) + 4px);
  margin-bottom: 44px;
}

.hero-copy,
.hero-panel,
.section-heading,
.promo-strip,
.service-card,
.price-card,
.contact-card,
.text-block,
.site-footer {
  text-align: center;
}

.hero-copy,
.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.promo-strip h2,
.text-block h2,
.contact-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.hero-title-brand {
  white-space: nowrap;
}

.hero-title-rest {
  display: block;
  font-size: 0.84em;
}

.lead,
.section-heading p,
.text-block p,
.price-card p,
.faq-list p,
.contact-card p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy .lead,
.hero-note,
.section-heading p,
.promo-strip p,
.hero-panel h2,
.hero-panel .panel-label {
  margin-left: auto;
  margin-right: auto;
}

.hero-note {
  margin: 2px auto 0;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 0;
  justify-content: center;
}

.hero-trust-list span,
.other-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(45, 31, 17, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  font-weight: 600;
}

.hero-trust-list span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 1.34rem;
  font-weight: 700;
}

.eyebrow,
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 28px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.button:hover,
.site-nav a:hover,
.language-switcher button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.button-secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.42);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.hero-stats article,
.contact-chip-list span {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 31, 17, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.city-stat-line {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
}

.stat-emphasis {
  font-weight: 700;
  display: block;
}

.stat-subline {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--muted);
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 45%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.95), rgba(34, 54, 41, 0.92));
  color: #f9f2e9;
}

.hero-panel .panel-label,
.hero-panel li {
  color: rgba(249, 242, 233, 0.88);
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  max-width: 30ch;
  text-align: left;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f6c19f;
}

.section,
.price-grid,
.faq-list {
  margin-top: 44px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
  text-wrap: balance;
}

.service-grid,
.faq-list,
.contact-list,
.contact-chip-list {
  display: grid;
  gap: 18px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-visual {
  position: relative;
  min-height: 220px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
}

.service-visual::before {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(15, 11, 8, 0.04), rgba(15, 11, 8, 0.62));
  filter: none;
  opacity: 1;
  z-index: 1;
}

.service-visual::after {
  width: 180px;
  height: 90px;
  left: -24px;
  bottom: -18px;
  background: rgba(255, 244, 229, 0.2);
  z-index: 1;
}

.service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card:hover .service-photo {
  transform: scale(1.04);
}

.service-visual span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(18, 14, 9, 0.34);
  backdrop-filter: blur(8px);
}

.service-photo-plumbing,
.service-photo-electric,
.service-photo-appliances,
.service-photo-walls,
.service-photo-painting,
.service-photo-tiles,
.service-photo-parquet,
.service-photo-lawn,
.service-photo-wood,
.service-photo-build,
.service-photo-install,
.service-photo-furniture {
  object-position: center;
}

.service-photo-plumbing { object-position: center 60%; }
.service-photo-electric { object-position: center center; }
.service-photo-appliances { object-position: center 36%; }
.service-photo-walls { object-position: center 28%; }
.service-photo-painting { object-position: center 40%; }
.service-photo-tiles { object-position: center center; }
.service-photo-parquet { object-position: center center; }
.service-photo-lawn { object-position: center 54%; }
.service-photo-wood { object-position: center 38%; }
.service-photo-build { object-position: center 42%; }
.service-photo-install { object-position: center center; }
.service-photo-furniture { object-position: center 54%; }

.service-card h3,
.price-card h2 {
  margin: 18px 18px 10px;
  font-size: 1.25rem;
  text-wrap: balance;
}

.service-card p {
  margin: 0 18px 20px;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 3.2em;
}

.service-request-button {
  margin: auto 18px 20px;
  align-self: center;
  min-width: 0;
  min-height: 46px;
  padding: 0 18px;
}

.other-services {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 31, 17, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 45%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.95), rgba(34, 54, 41, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.other-services-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  text-align: left;
}

.other-services h3 {
  width: 100%;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Fraunces", serif;
  text-align: center;
  color: #f9f2e9;
  line-height: 1.05;
}

.other-services p {
  margin: 28px 0 18px;
  color: rgba(249, 242, 233, 0.88);
  line-height: 1.6;
}

.other-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.other-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border-color: rgba(249, 242, 233, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #f9f2e9;
  border: 1px solid rgba(249, 242, 233, 0.16);
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.other-service-tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(249, 242, 233, 0.26);
}

.other-services-visual {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(15, 24, 17, 0.22);
}

.other-services-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 16, 0.02), rgba(14, 20, 16, 0.22));
  z-index: 1;
}

.other-services-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center center;
}

.promo-strip {
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  padding: 28px 30px;
  margin-top: 44px;
  border-radius: var(--radius-lg);
}

.promo-strip > div {
  width: 100%;
  text-align: center;
}

.promo-strip .eyebrow {
  display: block;
  text-align: center;
}

.promo-strip h2 {
  margin: 0 auto;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 18ch;
  white-space: normal;
  text-wrap: balance;
}

.promo-strip p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--muted);
  text-align: left;
  justify-self: stretch;
}

.promo-strip .button {
  justify-self: center;
}

.request-layout,
.two-column,
.price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.request-form,
.contact-card,
.text-block,
.price-card,
.faq-list details,
.site-footer,
.page-hero {
  border-radius: var(--radius-lg);
  padding: 28px;
}

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

.request-layout .request-form {
  width: 100%;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  font-size: 0.95rem;
  font-weight: 500;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 31, 17, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.request-form input[type="file"] {
  padding: 12px 14px;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(196, 91, 46, 0.18);
  border-color: rgba(196, 91, 46, 0.4);
}

.full-width {
  grid-column: 1 / -1;
}

.contact-list p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.contact-list strong {
  display: block;
  min-width: 0;
}

.contact-list a {
  color: var(--accent-dark);
}

.contact-card-below {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.95), rgba(34, 54, 41, 0.92));
  color: #f9f2e9;
}

.contact-card-below .eyebrow,
.contact-card-below h3,
.contact-card-below p,
.contact-card-below strong,
.contact-card-below span {
  color: #f9f2e9;
}

.contact-card-below .contact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.contact-card-below a {
  color: #ffd3b8;
}

.page-hero {
  margin-bottom: 28px;
}

.about-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 34%),
    radial-gradient(circle at bottom right, rgba(94, 104, 70, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(246, 239, 228, 0.82));
}

.about-story-main {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.95), rgba(34, 54, 41, 0.92));
}

.about-story-main h2,
.about-story-main p,
.about-story-main .eyebrow {
  color: #f9f2e9;
}

.about-story-side {
  background:
    radial-gradient(circle at top right, rgba(196, 91, 46, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(248, 240, 229, 0.92));
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(196, 91, 46, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 241, 232, 0.94));
  box-shadow: var(--shadow);
  text-align: center;
}

.about-benefit-card-accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.95), rgba(34, 54, 41, 0.92));
}

.about-benefit-card-accent h3,
.about-benefit-card-accent p {
  color: #f9f2e9;
}

.about-benefit-label {
  margin: 0 0 12px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.about-benefit-card-accent .about-benefit-label {
  color: rgba(249, 242, 233, 0.72);
}

.about-benefit-card h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.about-benefit-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.about-contact-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(94, 104, 70, 0.92), rgba(48, 70, 49, 0.92));
}

.about-contact-card .eyebrow,
.about-contact-card h3,
.about-contact-card p,
.about-contact-card strong,
.about-contact-card span,
.about-contact-card a {
  color: #f9f2e9;
}

.about-company-card {
  background:
    radial-gradient(circle at top right, rgba(196, 91, 46, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 241, 232, 0.94));
}

.price-card .price-value {
  margin: 0 18px;
  padding-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-card.accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 38%),
    linear-gradient(145deg, rgba(196, 91, 46, 0.94), rgba(138, 55, 23, 0.95));
}

.price-card.accent .price-value,
.price-card.accent h2,
.price-card.accent p {
  color: #fff7ef;
}

.faq-list details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list details[open] summary {
  margin-bottom: 12px;
}

.site-footer {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 44px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-brand {
  justify-self: start;
}

.footer-nav {
  justify-self: end;
}

.footer-slogan {
  justify-self: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(196, 91, 46, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .promo-strip,
  .request-layout,
  .two-column,
  .price-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

  .about-benefits-grid {
    grid-template-columns: 1fr;
  }

  .other-services {
    grid-template-columns: 1fr;
  }

  .other-services-copy,
  .other-services h3 {
    text-align: center;
  }

  .other-service-tags {
    justify-content: center;
  }

  .other-services-visual {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-card-below .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding-top: 14px;
  }

  .site-header,
  .hero,
  .page-hero,
  .request-form,
  .contact-card,
  .text-block,
  .site-footer,
  .promo-strip {
    padding: 22px;
  }

  .request-form,
  .hero-stats,
  .contact-chip-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-trust-list {
    flex-direction: column;
  }

  .other-services {
    padding: 22px;
    gap: 20px;
  }

  .other-services-photo {
    min-height: 240px;
  }

  .hero-note {
    white-space: normal;
  }

  .promo-strip h2 {
    white-space: normal;
  }

  .contact-card-below .contact-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-nav {
    justify-self: center;
  }
}
