:root {
  --green: #102d32;
  --green-light: #173b41;
  --cream: #f5f2eb;
  --white: #fff;
  --gold: #d3a65f;
  --text: #17343a;
  --muted: #64777a;
  --line: #dcd8ce;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--text); background: var(--cream); font-family: var(--sans); line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1rem, 5vw, 5.5rem);
  color: var(--white);
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.logos { display: flex; align-items: center; gap: .7rem; }
.logos span { opacity: .45; font-family: var(--serif); font-size: 1.3rem; }
.exotic-logo { width: 42px; height: 42px; padding: 2px; border-radius: 50%; object-fit: contain; background: var(--white); }
.losung-logo { width: 84px; max-height: 34px; object-fit: contain; }
header p { margin: 0; color: rgba(255,255,255,.62); font-size: .7rem; }

main { max-width: 1520px; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 5.5rem) 5rem; }

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(380px, .8fr);
  min-height: 335px;
  margin: 0 calc(clamp(1rem, 5vw, 5.5rem) * -1);
  padding-left: clamp(1rem, 5vw, 5.5rem);
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}

.intro > div { align-self: center; max-width: 740px; padding: 3.5rem 4rem 3.5rem 0; }
.intro > img { width: 100%; height: 100%; min-height: 335px; object-fit: cover; opacity: .78; }
.label { display: block; margin-bottom: .7rem; color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { margin-top: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.03em; line-height: 1.08; }
h1 { max-width: 720px; margin-bottom: 1rem; font-size: clamp(2.8rem, 4.6vw, 5rem); }
.intro p { max-width: 610px; margin: 0; color: rgba(255,255,255,.68); font-size: 1rem; }

.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 2.2rem; }
.services article { grid-column: span 2; min-width: 0; background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(16,45,50,.05); }
.services article:nth-child(4) { grid-column: 2 / span 2; }
.services article:nth-child(5) { grid-column: 4 / span 2; }
.card-image { position: relative; height: 180px; overflow: hidden; background: #ddd; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .35s; }
.services article:hover .card-image img { transform: scale(1.025); }
.card-image span { position: absolute; left: .8rem; bottom: .8rem; display: grid; place-items: center; width: 34px; height: 34px; color: var(--green); background: rgba(255,255,255,.92); border-radius: 50%; font: 400 .78rem var(--serif); }
.card-copy { padding: 1.25rem; }
.card-copy h2 { min-height: 2.5em; margin-bottom: .65rem; font-size: 1.35rem; }
.card-copy p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }

.next-step { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; margin-top: 1rem; padding: 2.1rem 2.4rem; color: var(--white); background: var(--green-light); }
.next-step .label { margin-bottom: .35rem; }
.next-step h2 { margin-bottom: .35rem; font-size: clamp(1.8rem, 2.7vw, 2.7rem); }
.next-step p { max-width: 750px; margin: 0; color: rgba(255,255,255,.63); font-size: .8rem; }
.next-step a { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 235px; padding: .85rem 1rem; color: var(--green); background: var(--white); border-radius: 2px; font-size: .72rem; font-weight: 800; transition: transform .2s; }
.next-step a:hover { transform: translateY(-2px); }

footer { max-width: 1520px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem; padding: 1.7rem clamp(1rem, 5vw, 5.5rem); border-top: 1px solid var(--line); color: #7b898b; font-size: .62rem; }
footer img { width: 80px; }
footer p { margin: 0; }
footer > span { font-size: .55rem; }

@media (max-width: 1050px) {
  .services { grid-template-columns: 1fr 1fr; }
  .services article, .services article:nth-child(4), .services article:nth-child(5) { grid-column: auto; }
  .services article:nth-child(5) { grid-column: 1 / -1; }
  .card-copy h2 { min-height: auto; }
}

@media (max-width: 720px) {
  header { min-height: 66px; padding-inline: 1rem; }
  header p { display: none; }
  main { padding-inline: 1rem; }
  .intro { grid-template-columns: 1fr; margin-inline: -1rem; padding-left: 0; }
  .intro > div { padding: 3.5rem 1rem; }
  .intro > img { height: 230px; min-height: 0; }
  .services { grid-template-columns: 1fr; }
  .services article, .services article:nth-child(5) { grid-column: auto; }
  .card-image { height: 190px; }
  .next-step { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.6rem; }
  .next-step a { min-width: 0; width: 100%; }
  footer { grid-template-columns: 1fr; padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .card-image img, .next-step a { transition: none; }
}
