:root {
  color-scheme: light;
  --crimson: #8c1821;
  --crimson-2: #b21d34;
  --crimson-3: #d44a5b;
  --ink: #1b1618;
  --charcoal: #2b1c1f;
  --muted: #5e5357;
  --bone: #f6f1ef;
  --mist: #f3eded;
  --line: #e7d7d9;
  --white: #ffffff;
  --shadow-strong: 0 26px 60px rgba(43, 14, 18, 0.2);
  --shadow-soft: 0 14px 30px rgba(43, 14, 18, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Arial", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 74, 91, 0.12), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(140, 24, 33, 0.1), transparent 40%),
    linear-gradient(180deg, #fbf8f7 0%, #f7f0f0 40%, #f9f5f2 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

.brand-logo {
  width: 160px;
  height: auto;
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Fraunces", "Georgia", serif;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  background: rgba(140, 24, 33, 0.08);
  color: var(--crimson);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--crimson), var(--crimson-2));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--crimson);
  box-shadow: none;
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.nav .btn-small {
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--crimson);
  border: 1px solid rgba(140, 24, 33, 0.2);
}

.hero {
  position: relative;
  padding: 120px 0 90px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(140, 24, 33, 0.92), rgba(74, 10, 18, 0.75)),
    url("../uploads/2020/08/home-image-4-2048x737.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% 8% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.hero-text h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.5rem, 3.4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.highlight-number {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2.2rem;
  display: block;
}

.highlight-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card h2 {
  font-family: "Fraunces", "Georgia", serif;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--charcoal);
}

.section {
  padding: 90px 0;
}

.intro {
  background: var(--bone);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.intro-grid h2,
.section-head h2,
.about-text h2,
.services-detail h3,
.contact h2,
.team-card h3 {
  font-family: "Fraunces", "Georgia", serif;
}

.intro-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.signature {
  margin-top: 18px;
  font-weight: 600;
  color: var(--crimson);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
}

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 24, 33, 0.12), transparent 70%);
  pointer-events: none;
}

.services-intro {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card h3 {
  padding: 0 20px;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.service-card p {
  padding: 0 20px;
  color: var(--muted);
}

.services-detail {
  margin-top: 60px;
  background: var(--charcoal);
  color: var(--white);
  padding: 40px;
  border-radius: 24px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.detail-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.clients {
  background: linear-gradient(180deg, #ffffff 0%, #f7efee 100%);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.logos-grid {
  align-items: center;
}

.client-logo {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 130px;
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  object-fit: contain;
  filter: saturate(0.95);
}

.about {
  background: var(--bone);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--muted);
}

.about-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.team {
  background: var(--mist);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.team-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.team-card p {
  color: var(--muted);
}

.contact {
  background: linear-gradient(120deg, #2b1418 0%, #4a0f19 40%, #71121e 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-info .label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.hours {
  margin-top: 28px;
}

.hours h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hours ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.site-footer {
  background: #200e11;
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-inner strong {
  display: block;
  color: var(--white);
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 150px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-text,
  .hero-card,
  .service-card,
  .client,
  .about-text,
  .about-image,
  .team-card {
    animation: fadeUp 0.8s ease both;
  }

  .service-card:nth-child(2),
  .client:nth-child(2),
  .team-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .service-card:nth-child(3),
  .client:nth-child(3),
  .team-card:nth-child(3) {
    animation-delay: 0.2s;
  }

  .service-card:nth-child(4),
  .client:nth-child(4),
  .team-card:nth-child(4) {
    animation-delay: 0.3s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
