:root {
  --ink: #181614;
  --muted: #67625b;
  --paper: #f4efe7;
  --surface: #fffdf8;
  --wine: #6f1d31;
  --wine-dark: #4a101f;
  --navy: #172033;
  --graphite: #151413;
  --champagne: #c3a064;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 24px 70px rgba(20, 18, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f1e7 0%, #efe9df 34%, #f8f5ef 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(248, 244, 237, 0.88);
  border-bottom: 1px solid rgba(111, 29, 49, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 42px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: brightness(0.62) contrast(1.08);
}

.brand-word {
  width: 154px;
  height: 50px;
  object-fit: contain;
  display: block;
  filter: brightness(0.62) contrast(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #35312e;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 70px) 58px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.98) 0%, rgba(247, 241, 231, 0.9) 32%, rgba(247, 241, 231, 0.18) 65%, rgba(247, 241, 231, 0.04) 100%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.12), rgba(20, 18, 16, 0.02));
}

.hero-content {
  position: relative;
  width: min(660px, 100%);
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 610px;
  color: #3e3934;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 35px rgba(123, 31, 50, 0.24);
}

.secondary {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(111, 29, 49, 0.18);
}

.language-line {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  padding: 28px clamp(20px, 5vw, 70px);
  background: rgba(255, 253, 248, 0.94);
}

.proof-band strong {
  color: var(--wine);
  font-size: 30px;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
  max-width: 320px;
}

.section {
  padding: 88px clamp(20px, 5vw, 70px);
}

.split,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.split p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.service-section {
  background: #fffdf8;
}

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

.service-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f3ea;
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.timeline p,
.why-grid p,
.quality p,
.contact p {
  color: var(--muted);
}

.process {
  background: var(--graphite);
  color: white;
}

.process .section-kicker,
.process .timeline span {
  color: var(--champagne);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
}

.timeline li {
  min-height: 235px;
  padding: 28px;
  background: var(--graphite);
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 18px;
  background: #e8e0d4;
}

.quality-panel,
.language-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-panel {
  color: white;
  background: var(--wine-dark);
}

.language-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.why {
  background: #fffdf8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.why-grid div {
  padding-top: 24px;
  border-top: 3px solid var(--wine);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  padding: 82px clamp(20px, 5vw, 70px);
  color: white;
  background:
    linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 58%, #301119 100%);
}

.contact h2 {
  max-width: 780px;
}

.contact p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact .eyebrow {
  color: #f0c281;
}

.contact-copy {
  display: grid;
  gap: 28px;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fffdf8;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 13px 14px;
  color: #181614;
  background: rgba(255, 253, 248, 0.92);
  font: inherit;
}

.inquiry-form textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

.inquiry-form .wide,
.inquiry-form .contact-button {
  grid-column: 1 / -1;
}

.contact-button {
  color: var(--wine);
  background: #fffdf8;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: #141414;
  font-size: 14px;
}

.footer-brand img {
  display: block;
  width: 116px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.35);
}

@media (max-width: 980px) {
  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 36%, rgba(247, 241, 231, 0.38) 72%, rgba(247, 241, 231, 0.1) 100%);
  }

  .proof-band,
  .split,
  .section-heading,
  .service-grid,
  .timeline,
  .quality,
  .why-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline li {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 18px;
  }

  .brand-word {
    width: 128px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 110px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .button {
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
