:root {
  --bg: #171717;
  --bg-soft: #1f1f1f;
  --surface: #242424;
  --surface-alt: #2b2b2b;
  --text: #f3f3f3;
  --muted: #c7c7c7;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #b31828;
  --accent-2: #d63748;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  --radius: 15px;
  --container: 1180px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 95%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(179, 24, 40, 0.14),
      transparent 24%
    ),
    linear-gradient(to bottom, #121212, #1a1a1a 42%, #151515);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5a1aa;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(18, 18, 18, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.25rem;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  backdrop-filter: blur(12px);
}

.lang-switcher button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lang-switcher button.active {
  background: var(--accent);
  color: white;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(36, 36, 36, 0.96),
    rgba(25, 25, 25, 0.96)
  );
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(179, 24, 40, 0.14), transparent 34%),
    radial-gradient(
      circle at bottom right,
      rgba(214, 55, 72, 0.08),
      transparent 28%
    );
  pointer-events: none;
}

.hero-title {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-text {
  position: relative;
  margin: 0 0 1.5rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  position: relative;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.visual-panel {
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1d1d1d;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-panel.main {
  min-height: 360px;
}

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

.visual-grid .visual-panel {
  min-height: 125px;
}

.stats {
  padding-top: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card,
.service-card,
.reason-card,
.contact-card,
.owner-card,
.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.25rem;
}

.stat-value {
  display: block;
  margin-bottom: 0.4rem;
  color: #ff8a97;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.about-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-visual {
  align-self: stretch;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: #1d1d1d;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-card,
.owner-card,
.contact-card {
  padding: 1.5rem;
}

.services-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.reason-card {
  padding: 1.25rem;
}

.service-card {
  overflow: hidden;
  padding: 0 0 1.25rem;
}

.service-image {
  display: block;
  width: 100%;
  height: 130px;
  margin: 0 0 1.25rem;
  object-fit: cover;
  filter: brightness(0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-image-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(179, 24, 40, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #2b2b2b, #1d1d1d);
  color: #ff8a97;
}

.service-image-placeholder span {
  font-size: 3rem;
  line-height: 1;
}

.service-card h3,
.reason-card h3,
.owner-card h3,
.contact-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.service-card p,
.reason-card p,
.owner-card p,
.contact-card p,
.about-copy p {
  margin: 0;
  color: var(--muted);
}

.service-icon,
.reason-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #ff8a97;
  font-size: 1.35rem;
  font-weight: 800;
  overflow: hidden;
}

.service-card .service-icon {
  margin: 0 1.25rem 1rem;
}

.service-card h3,
.service-card p {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.service-card:nth-child(1) {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(179, 24, 40, 0.12), transparent 55%);
}

.service-card:nth-child(2) {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 55%);
}

.service-card:nth-child(3) {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(214, 55, 72, 0.1), transparent 55%);
}

.service-card:nth-child(4) {
  background:
    linear-gradient(rgba(245, 228, 228, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 138, 151, 0.08), transparent 55%);
}

.reasons-grid .reason-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, calc((100% - 1.25rem) / 2));
}

.owner-feature {
  display: grid;
  grid-template-columns: minmax(220px, min(40%, 300px)) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.owner-photo {
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, #374862, #222831);
}

.owner-content {
  padding: 1.25rem;
  align-self: center;
}
.owner-card .section-title {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin-bottom: 0.8rem;
}
.owner-card p {
  font-size: 0.95rem;
}

.owner-meta {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  grid-template-columns: 1fr;
}
.contact-card {
  padding: 1.5rem;
}

.contact-compact {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.contact-brand img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

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

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 0;
}

.contact-item {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.contact-line strong {
  color: #ff8a97;
  font-weight: 800;
}

.contact-line a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 151, 0.55);
  text-underline-offset: 0.18em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: #ff8a97;
  text-decoration-color: currentColor;
}

.contact-cta {
  padding: 1rem;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(179, 24, 40, 0.3),
    rgba(214, 55, 72, 0.12)
  );
  border: 1px solid rgba(255, 138, 151, 0.28);
  box-shadow: 0 10px 24px rgba(179, 24, 40, 0.18);
}

.contact-cta p {
  margin: 0;
  color: white;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-map {
  overflow: hidden;
  min-height: 220px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-copy {
  opacity: 0.95;
}

.lang-only,
.lang-en,
.lang-mk,
.lang-inline-en,
.lang-inline-mk {
  display: none;
}

html[data-lang="en"] .lang-en,
html[data-lang="mk"] .lang-mk {
  display: block;
}

html[data-lang="en"] .lang-inline-en,
html[data-lang="mk"] .lang-inline-mk {
  display: inline;
}

html[data-lang="en"] .switch-en,
html[data-lang="mk"] .switch-mk {
  background: var(--accent);
  color: white;
}
