:root {
  --kfd-gold: #c4a556;
  --kfd-cream: #f6f2ed;
  --kfd-ink: #443e36;
  --kfd-ink-soft: #6a5f54;
  --kfd-white: #ffffff;
  --kfd-shadow: 0 18px 40px rgba(46, 41, 36, 0.12);
}

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

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--kfd-ink);
  background: linear-gradient(180deg, #f7f2ea 0%, #ffffff 45%, #f7f2ea 100%);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--kfd-ink);
  color: var(--kfd-white);
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--kfd-white);
  border-bottom: 1px solid #ece3d7;
}

.utility-bar {
  background: var(--kfd-gold);
  color: #2d261f;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
}

.utility-bar a {
  color: inherit;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.logo img {
  height: 54px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--kfd-ink);
  background: transparent;
  color: var(--kfd-ink);
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
}

.main-nav .active {
  color: var(--kfd-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-button {
  background: var(--kfd-ink);
  color: var(--kfd-white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.lang-switcher {
  position: relative;
}

.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.75rem;
  background: var(--kfd-white);
  border: 1px solid #ece3d7;
  border-radius: 12px;
  position: absolute;
  right: 0;
  min-width: 220px;
  box-shadow: var(--kfd-shadow);
  z-index: 10;
}

.lang-switcher li + li {
  margin-top: 0.5rem;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--kfd-ink-soft);
}

.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top, #fff7e8 0%, #f6f0e6 55%, #ffffff 100%);
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero p {
  margin: 1rem auto 0;
  max-width: 720px;
  color: var(--kfd-ink-soft);
  font-size: 1.1rem;
}

.section-header {
  padding: 3rem 0 1rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--kfd-ink-soft);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 4rem;
}

.service-card {
  background: var(--kfd-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #efe3d5;
  box-shadow: 0 8px 22px rgba(46, 41, 36, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--kfd-shadow);
}

.service-media {
  background: #f2ede4;
  aspect-ratio: 3 / 2;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.service-media img.color {
  opacity: 0;
}

.service-card:hover .service-media img.color,
.service-card:focus-within .service-media img.color {
  opacity: 1;
}

.service-card:hover .service-media img.gray,
.service-card:focus-within .service-media img.gray {
  opacity: 0;
}

.service-body {
  padding: 1.5rem 1.75rem 2rem;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-heading img {
  width: 40px;
  height: 40px;
}

.service-heading h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--kfd-ink);
}

.service-body p {
  margin: 0;
  color: var(--kfd-ink-soft);
}

@media (max-width: 980px) {
  .header-main {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

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

@media (max-width: 640px) {
  .utility-bar {
    font-size: 0.9rem;
  }

  .logo img {
    height: 46px;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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