﻿:root {
  --brown-900: #3f2112;
  --brown-700: #6a381c;
  --brown-500: #a56532;
  --orange-500: #ee7d14;
  --orange-600: #d46606;
  --cream-100: #f8ecd8;
  --cream-200: #f1dfc2;
  --line: #caa477;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  color: var(--brown-900);
  background:
    linear-gradient(180deg, #fff2dc52, #f2ba6f2e),
    url("img/coffee-bg-full.png") center/cover no-repeat fixed;
  padding: 20px;
}

.site {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid #d7bd95;
  box-shadow: 0 14px 38px #371a0b2c;

}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  border-bottom: 3px solid #d3b284;
  background: #FDF6EB;
}

.brand {
  min-width: 0;
}

.brand img {
  display: block;
  width: min(680px, 100%);
  height: auto;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  text-align: right;
}

.top-contact p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  font-weight: 800;
  color: #4f2612;
}

.top-contact-address {
  line-height: 1.15;
}

.top-contact-address-line {
  display: block;
}

.top-contact-address-line-1 {
  white-space: nowrap;
}

.top-contact-address-line-2 {
  margin-top: 3px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid #d95f00;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(#f58a1f, #d86509);
  box-shadow: 0 4px 0 #aa4700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #aa4700;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #aa4700;
}

.btn-small {
  padding: 9px 18px;
  font-size: 1.12rem;
}

.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d4b489;
  background:
    linear-gradient(90deg, #f6deb899 0%, #f0c78855 40%, #00000000 68%),
    url("img/hero-ekspres.png") center/cover no-repeat;
}

.hero-copy {
  margin-left: 42px;
  max-width: min(630px, calc(100% - 84px));
  padding: 22px 22px 24px;
  border-radius: 12px;
  background: #f8e5cbb0;
  backdrop-filter: blur(2px);
}

.hero-copy h2,
.hero-copy h3,
.cards h4,
.contact h4 {
  font-family: "Bree Serif", serif;
  margin: 0;
}

.hero-copy h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  color: #4b1f0f;
}

.hero-copy h3 {
  margin-top: 4px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: #5d2a12;
}

.hero-copy p {
  margin: 12px 0 0;
  font-size: clamp(1.25rem, 1.65vw, 2rem);
  font-weight: 800;
}

.hero-note {
  color: #6e3a18;
  margin-bottom: 16px;
}

.hero-copy .btn {
  padding: 14px 32px;
      margin-top: 30px;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 2px solid var(--line);
  background: #fdf0ddbf;
}

.cards article {
  padding: 18px 24px 20px;
}

.cards article + article {
  border-left: 2px solid #d8ba8d;
}

.cards h4 {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  color: #5a2a12;
  margin-bottom: 10px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cards li {
  margin-bottom: 6px;
  font-size: clamp(1.1rem, 1.35vw, 1.8rem);
  font-weight: 800;
}

.cards li::before {
  content: ">";
  color: #d97a1f;
  margin-right: 10px;
}

.brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 2px solid var(--line);
  background: #fdf1e0b8;
}

.brands img {
  display: block;
  width: min(220px, 100%);
  height: 60px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 18px;
  padding: 18px 26px;
  background: #fdf1e0c4;
  border-bottom: 2px solid #cfad80;
}

.contact h4 {
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  color: #5a2a12;
}

.contact p,
.contact li {
  margin: 8px 0 0;
  font-size: clamp(1.15rem, 1.5vw, 1.85rem);
  font-weight: 800;
}

.mail-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.phone-link {
  color: inherit;
  text-decoration: none;
}

.contact li::before {
  content: "-";
  color: #bf620d;
  margin-right: 10px;
}

.footer {
  text-align: center;
  padding: 14px;
  background: #f8e8cfcc;
  color: #4f2512;
  font-weight: 900;
  font-size: clamp(1.2rem, 1.7vw, 2rem);
}

@media (max-width: 1080px) {
  body {
    background-attachment: scroll;
    padding: 10px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .hero {
    min-height: 480px;
    background:
      linear-gradient(180deg, #f6deb8b8 0%, #f2cf9c88 55%, #00000011 100%),
      url("img/hero-ekspres.png") center/cover no-repeat;
  }

  .hero-copy {
    margin: 18px;
    max-width: 100%;
  }

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

  .cards article + article {
    border-left: 0;
    border-top: 2px solid #d8ba8d;
  }

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

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

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .top-contact {
    justify-content: center;
    text-align: center;
  }

  .top-contact-address-line-1 {
    white-space: normal;
  }

  .btn-small,
  .hero-copy .btn {
    width: 100%;
  }

  .hero {
    min-height: 430px;
  }

  .hero-copy {
    padding: 16px;
  }

  .brands {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

