:root {
  --orange: #e8752a;
  --brown: #3d2314;
  --beige: #f9f5f0;
  --text: #5f534b;
  --line: #ece2d9;
  --shadow: 0 20px 45px rgba(61, 35, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header.home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: none;
  background: linear-gradient(to bottom, rgba(37, 22, 12, 0.35), rgba(37, 22, 12, 0));
  backdrop-filter: none;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  height: 84px;
  width: auto;
  display: block;
  border-radius: 999px;
  background: #fff;
}

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

.nav a {
  font-weight: 600;
  color: var(--brown);
  opacity: 0.9;
}

.header.home .nav a {
  color: #fff;
}

.nav a.active,
.nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.btn {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(232, 117, 42, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #fff 8%, rgba(255, 255, 255, 0.88) 30%, rgba(255, 255, 255, 0.52) 48%, rgba(255, 255, 255, 0) 73%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 180px 0 120px;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  color: var(--brown);
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

.highlight {
  color: var(--orange);
}

.section {
  padding: 82px 0;
}

.features {
  background: var(--beige);
}

.features h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-3px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(232, 117, 42, 0.12);
  margin-bottom: 12px;
}

.about p,
.legal p,
.contact p {
  line-height: 1.75;
  font-size: 1.04rem;
}

.about {
  background: #fff;
}

.about-shell {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 35%, #fdf9f5 100%);
  box-shadow: var(--shadow);
  padding: 40px;
}

.about-intro {
  max-width: 760px;
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-intro h2 {
  margin-bottom: 14px;
}

.about-cards {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
}

.about-card-wide {
  grid-column: span 2;
}

.about-label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a7667;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-value {
  margin: 0;
  color: var(--brown);
  font-size: 1.08rem;
  font-weight: 700;
}

.legal .block {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-premium {
  background: radial-gradient(circle at top right, #fff8f3 0, #fff 42%);
}

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

.contact-hero h1 {
  margin-bottom: 14px;
}

.contact-box-premium {
  padding: 28px;
  border-radius: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

@media (max-width: 900px) {
  .grid-3,
  .contact-layout,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-shell {
    padding: 28px 22px;
  }

  .about-card-wide {
    grid-column: span 1;
  }

  .header.home {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--line);
  }

  .header.home .nav a {
    color: var(--brown);
  }

  .hero {
    min-height: 530px;
  }

  .hero-content {
    padding: 128px 0 72px;
    margin-left: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
