:root {
  --stone: #f6f1e8;
  --sand: #dfd2bd;
  --clay: #b88a4b;
  --dark: #292723;
  --ink: #242424;
  --muted: #696158;
  --white: #ffffff;
  --line: rgba(41, 39, 35, .14);
  --shadow: 0 22px 60px rgba(41, 39, 35, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #f5ead9;
  font-size: 13px;
  font-weight: 700;
}

.topbar .wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 9px 0;
  text-align: center;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header .wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: grid;
  gap: 4px;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.logo span {
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #443d35;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--clay);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 5px;
  border: 1px solid transparent;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.button.light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--line);
}

.hero {
  padding: clamp(56px, 8vw, 104px) 0;
  background:
    linear-gradient(115deg, rgba(41, 39, 35, .9), rgba(41, 39, 35, .67) 48%, rgba(41, 39, 35, .18)),
    url("images/gramacen-03.jpg") center / cover;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #e6c083;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
.title,
.split h2,
.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
}

h1 em {
  color: #e6c083;
  font-style: italic;
}

.lead {
  max-width: 700px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.72;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.proof div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.proof b {
  color: #f3d39c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.proof span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase {
  position: relative;
  padding: clamp(36px, 5vw, 62px) 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 1), rgba(255, 255, 255, .78) 18%, rgba(255, 255, 255, .78) 82%, rgba(246, 241, 232, 1)),
    var(--stone);
  overflow: hidden;
}

.showcase::before,
.showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(41, 39, 35, .24);
}

.showcase::before {
  top: 8px;
  box-shadow: 0 3px 8px rgba(41, 39, 35, .22);
}

.showcase::after {
  bottom: 22px;
}

.showcase-stage {
  position: relative;
  width: min(100%, 1540px);
  min-height: clamp(270px, 32vw, 440px);
  margin: 0 auto;
}

.showcase-slide {
  position: absolute;
  top: 50%;
  width: min(64vw, 860px);
  aspect-ratio: 16 / 6.4;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 22px 42px rgba(41, 39, 35, .22);
  overflow: hidden;
  transform: translateY(-50%);
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.showcase-slide.is-left {
  left: 3.2%;
  z-index: 1;
  width: min(38vw, 560px);
  opacity: .78;
  transform: translateY(-50%) translateX(-2%);
}

.showcase-slide.is-center {
  left: 50%;
  z-index: 3;
  width: min(68vw, 980px);
  transform: translate(-50%, -50%);
}

.showcase-slide.is-right {
  right: 3.2%;
  z-index: 2;
  width: min(39vw, 570px);
  opacity: .82;
  transform: translateY(-50%) translateX(2%);
}

.showcase-thumbs {
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: 0;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
  opacity: .32;
}

.showcase-thumbs img {
  width: 120px;
  height: 58px;
  object-fit: cover;
}

.page-hero {
  padding: clamp(52px, 7vw, 88px) 0;
  background: linear-gradient(135deg, #34302b, #8c785f);
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.72;
}

.section {
  padding: clamp(58px, 8vw, 98px) 0;
}

.section.sand {
  background: var(--sand);
}

.heading {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.title {
  color: var(--dark);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
}

.text {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(41, 39, 35, .08);
}

.card small {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.card h3 {
  margin: 16px 0 10px;
  color: var(--dark);
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.split h2 {
  color: var(--dark);
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.08;
}

.split p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 17px 18px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.45;
}

.visual {
  min-height: 460px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(0, 0, 0, .22)),
    repeating-linear-gradient(45deg, #c6b89e 0 18px, #a9997d 18px 31px, #ded4c3 31px 43px);
  box-shadow: var(--shadow);
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  min-height: 460px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-photo figcaption {
  padding: 13px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.link-grid a {
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(41, 39, 35, .08);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.cta {
  padding: clamp(58px, 8vw, 92px) 0;
  background: var(--dark);
  color: var(--white);
}

.cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  line-height: 1.65;
}

.footer {
  padding: 0;
  background: #1d1c1a;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.75;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding: 48px 0 34px;
  text-align: left;
}

.footer-widget h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}

.footer-widget p {
  margin: 0;
}

.footer-widget ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget a {
  color: rgba(255, 255, 255, .74);
}

.footer-widget a:hover {
  color: #e6c083;
}

.footer-brand {
  color: #e6c083;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .cta .wrap {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    min-height: 360px;
  }

  .showcase-slide.is-left,
  .showcase-slide.is-right {
    display: none;
  }

  .showcase-slide.is-center {
    width: min(94vw, 720px);
  }

  .cards,
  .link-grid,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .header .wrap {
    min-height: 72px;
  }

  .logo {
    font-size: 22px;
  }

  .header .button {
    padding: 0 13px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof,
  .cards,
  .link-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .showcase-stage {
    min-height: 265px;
  }

  .showcase-thumbs {
    display: none;
  }
}
