:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --text: #201816;
  --muted: #6b5b4d;
  --brand: #835325;
  --brand-soft: #ad834f;
  --line: #eadfce;
  --ok: #2d6a4f;
  --wrap: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.ws-wrap {
  width: min(var(--wrap), 100% - 32px);
  margin-inline: auto;
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 243, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.ws-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.ws-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.ws-brand img {
  width: 160px;
  height: auto;
  display: block;
}

.ws-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
}

.ws-nav a {
  white-space: nowrap;
  padding: 6px 2px;
}

.ws-nav a:hover {
  color: var(--brand);
}

.ws-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.ws-cta:hover {
  background: #6e451d;
}

.ws-main {
  padding-bottom: 42px;
}

.ws-preview-banner {
  margin: 14px auto 0;
  width: min(var(--wrap), 100% - 32px);
  border: 1px solid #e8c98d;
  background: #fff7e8;
  color: #7a5b12;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.ws-hero {
  padding: 30px 0 34px;
}

.ws-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.ws-kicker {
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.ws-h1 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.03;
  color: var(--brand);
  letter-spacing: 0.015em;
}

.ws-lead {
  margin: 0 0 18px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ws-btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  touch-action: manipulation;
}

.ws-btn-soft:hover {
  border-color: var(--brand-soft);
}

.ws-hero-media {
  background: linear-gradient(140deg, #f0e2cf 0%, #f8eee1 45%, #efe2d3 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 36px rgba(52, 36, 22, 0.12);
}

.ws-hero-media img {
  width: min(430px, 100%);
  height: auto;
  display: block;
}

.ws-section {
  padding: 18px 0 10px;
}

.ws-h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3.3vw, 2.35rem);
  color: var(--brand);
  letter-spacing: 0.01em;
}

.ws-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.ws-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.ws-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px 14px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
}

.ws-service-card img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
}

.ws-service-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2b231c;
}

.ws-service-link {
  margin-top: auto;
  color: var(--brand);
  font-size: 0.79rem;
  font-weight: 700;
}

.ws-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ws-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-height: 142px;
}

.ws-why-no {
  margin: 0 0 7px;
  color: var(--brand-soft);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.ws-why-text {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.ws-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background: #f4eee6;
}

.ws-footer-grid {
  padding: 22px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.ws-footer h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  color: var(--brand);
}

.ws-footer p,
.ws-footer li,
.ws-footer a {
  margin: 0;
  color: #4a3d33;
  font-size: 0.86rem;
}

.ws-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.ws-footer-note {
  border-top: 1px solid #e6d9c9;
  padding: 11px 0 13px;
  font-size: 0.78rem;
  color: #6b5b4d;
}

@media (max-width: 1160px) {
  .ws-nav {
    display: none;
  }
  .ws-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .ws-hero-grid {
    grid-template-columns: 1fr;
  }
  .ws-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ws-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ws-header-row {
    min-height: 66px;
  }
  .ws-brand img {
    width: 128px;
  }
  .ws-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ws-why-grid {
    grid-template-columns: 1fr;
  }
}
