:root {
  --bg: #fbf7f4;
  --bg-soft: #fff8f5;
  --bg-muted: #f6eeea;
  --card: #ffffff;
  --line: #ead9d4;
  --line-strong: #e2cdc7;
  --text: #1f1f1f;
  --text-soft: #5c5653;
  --brand: #7a0f1a;
  --brand-strong: #b21e24;
  --brand-dark: #5d0a14;
  --shadow-soft: 0 20px 55px rgba(31, 31, 31, 0.08);
  --shadow-card: 0 12px 35px rgba(31, 31, 31, 0.06);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, #f7f0ec 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: calc(100% - 48px);
  max-width: none;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(234, 217, 212, 0.85);
  background: rgba(251, 247, 244, 0.88);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: white;
  box-shadow: 0 16px 34px rgba(122, 15, 26, 0.22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.brand-text {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: width 0.25s ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 85%);
  box-shadow: 0 16px 34px rgba(122, 15, 26, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(122, 15, 26, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(178, 30, 36, 0.26);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--bg-soft);
  border-color: rgba(178, 30, 36, 0.48);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0;
  cursor: pointer;
  color: var(--brand);
  box-shadow: var(--shadow-card);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(234, 217, 212, 0.7);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a:not(.mobile-cta) {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.64);
}

.mobile-cta {
  width: 100%;
  margin-top: 6px;
}

.hero-section {
  padding: 40px 0 0;
}

.hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 48px;
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #fffaf7 0%, #f7eeea 55%, #fff8f4 100%);
  box-shadow: var(--shadow-soft);
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -16px;
  width: 290px;
  height: 180px;
  border-top-right-radius: 160px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(178, 30, 36, 0.28), rgba(122, 15, 26, 0.06), transparent 70%);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  color: #8a2432;
}

.hero-copy h1 {
  margin: 18px 0 0;
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  color: #8a2432;
}

.headline-line {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #8a2432;
  margin-top: 22px;
}

.hero-text {
  max-width: 38rem;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 720px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  background: white;
  box-shadow: 0 22px 52px rgba(31, 31, 31, 0.12);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  border-top-left-radius: 92px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  opacity: 0.92;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.services-section,
.features-section,
.contact-section {
  padding-top: 28px;
}

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

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid rgba(239, 225, 220, 1);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.icon-circle,
.feature-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 14px 30px rgba(122, 15, 26, 0.2);
}

.service-card h2,
.contact-intro h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p,
.contact-intro p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.icon-circle svg,
.feature-icon svg,
.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fbf4f0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px 24px;
}

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

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--bg-soft);
}

.feature-item span {
  font-size: 1rem;
  font-weight: 700;
  color: #342f2d;
}

.contact-section {
  padding-bottom: 56px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(122, 15, 26, 0.15);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand) 0%, #8f1520 42%, var(--brand-dark) 100%);
  color: white;
  box-shadow: 0 26px 70px rgba(122, 15, 26, 0.28);
}

.contact-band::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -20px;
  width: 280px;
  height: 180px;
  border-top-right-radius: 170px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-band::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 320px;
  height: 220px;
  border-top-left-radius: 190px;
  background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 68%);
}

.contact-intro,
.contact-grid,
.footer-line {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.contact-card > div:last-child {
  margin-top: 14px;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--brand);
  background: white;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.88);
}

.contact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.98);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.footer-line {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1280px) {
  .hero-card {
    gap: 36px;
  }

  .hero-image-frame {
    width: min(100%, 620px);
  }
}

@media (max-width: 1120px) {
  .hero-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 34px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-media {
    justify-content: center;
  }

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

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

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 960px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-frame img {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 24px);
  }

  .nav-wrap {
    min-height: 80px;
  }

  .brand-text {
    white-space: normal;
    line-height: 1.15;
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-card {
    padding: 28px 18px;
    border-radius: 30px;
  }

  .hero-card::before {
    left: -92px;
    width: 220px;
    height: 120px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-image-frame {
    border-radius: 26px;
  }

  .hero-image-frame img {
    min-height: 260px;
  }

  .services-grid,
  .features-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-band {
    padding: 26px 18px;
    border-radius: 30px;
  }

  .contact-intro h2,
  .service-card h2 {
    font-size: 1.35rem;
  }

  .footer-line {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}
