:root {
  --earth: #2f4a3e;
  --gold: #d4b483;
  --sand: #ede3d7;
  --clay: #b87a6a;
  --paper: #fbf8f3;
  --ink: #302a27;
  --muted: #726861;
  --white: #fffdf9;
  --line: rgba(47, 74, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

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

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

nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 210px;
}

.logo img {
  display: block;
  width: 100%;
}

.links {
  display: flex;
  gap: 25px;
  font-size: 13px;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--earth);
  border: 1px solid var(--earth);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--clay);
  border-color: var(--clay);
}

.button.outline {
  background: transparent;
  color: var(--earth);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
}

.kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(50px, 6.2vw, 86px);
  letter-spacing: -2px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
  margin: 27px 0 33px;
}

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

.hero-visual {
  height: 550px;
  position: relative;
}

.circle {
  position: absolute;
  width: 430px;
  height: 430px;
  right: 20px;
  top: 25px;
  border-radius: 50%;
  background: var(--sand);
}

.circle:before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.orb {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: 0;
  top: 0;
  background: radial-gradient(circle at 34% 30%, #f3d9aa, var(--gold) 42%, #9c7141);
  box-shadow: 0 20px 50px rgba(81, 55, 35, 0.14);
}

.flow {
  position: absolute;
  right: 35px;
  bottom: 55px;
  width: 365px;
  height: 260px;
  border: 1px solid var(--clay);
  border-radius: 58% 42% 64% 36%/58% 64% 36% 42%;
  transform: rotate(-12deg);
}

.note {
  position: absolute;
  left: 0;
  bottom: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px 28px;
  max-width: 300px;
  box-shadow: 0 20px 48px rgba(47, 74, 62, 0.1);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.note span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promise {
  background: var(--earth);
  color: white;
}

.promise .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
}

.promise h2 {
  font-size: clamp(38px, 4.6vw, 60px);
}

.promise p {
  color: #d8ded9;
  font-size: 17px;
}

.promise em {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.35;
}

section {
  padding: 105px 0;
}

.head {
  max-width: 780px;
  margin-bottom: 52px;
}

.head h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -1px;
}

.head p {
  color: var(--muted);
  font-size: 17px;
  margin: 20px 0 0;
}

.worlds {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.world {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 27px 20px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.world:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(47, 74, 62, 0.08);
}

.world:nth-child(2n) {
  background: #f5eee7;
}

.world-icon {
  width: 47px;
  height: 47px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--clay);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  margin-bottom: 25px;
}

.world h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.world p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.world a {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--earth);
}

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

.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-end;
  margin-bottom: 38px;
}

.filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter button {
  font: 600 12px "Montserrat", sans-serif;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid var(--earth);
  background: transparent;
  color: var(--earth);
  cursor: pointer;
  transition: 0.2s;
}

.filter button.active {
  background: var(--earth);
  color: white;
}

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

.offer {
  background: var(--white);
  border-radius: 20px;
  padding: 27px;
  border: 1px solid rgba(47, 74, 62, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--earth);
}

.offer h3 {
  font-size: 27px;
}

.offer p {
  font-size: 13px;
  color: var(--muted);
}

.offer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--clay);
  margin-top: auto;
}

.offer.hidden {
  display: none;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
  align-items: center;
}

.portrait {
  height: 580px;
  background: linear-gradient(145deg, var(--sand), #d9c4b4);
  border-radius: 48% 48% 24px 24px;
  position: relative;
  overflow: hidden;
}

.portrait:before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.portrait:after {
  content: "DEIN FOTO";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

.about h2 {
  font-size: clamp(40px, 5vw, 62px);
  margin-bottom: 22px;
}

.about p {
  color: var(--muted);
}

.newsletter {
  padding-top: 20px;
}

.newsletter-box {
  background: var(--clay);
  color: white;
  border-radius: 28px;
  padding: 62px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.newsletter h2 {
  font-size: 45px;
}

.newsletter p {
  color: #f6e9e4;
}

.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  min-width: 220px;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  font: 14px "Montserrat", sans-serif;
}

.newsletter .button {
  background: var(--earth);
  cursor: pointer;
}

footer {
  margin-top: 100px;
  background: var(--earth);
  color: white;
  padding: 58px 0 30px;
}

.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 45px;
}

.foot-logo {
  width: 230px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.foot p,
.foot a {
  color: #d7dfda;
  font-size: 13px;
}

.foot a {
  display: block;
  margin: 7px 0;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #bfc9c2;
  font-size: 11px;
}

@media (max-width: 980px) {
  .links {
    display: none;
  }
  .hero,
  .promise .wrap,
  .about,
  .newsletter-box {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 55px;
    gap: 25px;
  }
  .hero-visual {
    height: 420px;
  }
  .worlds {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-top {
    display: block;
  }
  .filter {
    margin-top: 24px;
  }
  .portrait {
    height: 470px;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .nav {
    height: 80px;
  }
  .logo {
    width: 170px;
  }
  .nav .button {
    padding: 11px 14px;
  }
  h1 {
    font-size: 47px;
  }
  .hero-visual {
    height: 340px;
  }
  .circle {
    width: 290px;
    height: 290px;
  }
  .flow {
    width: 265px;
    height: 190px;
  }
  .orb {
    width: 95px;
    height: 95px;
  }
  .worlds,
  .offer-grid,
  .foot {
    grid-template-columns: 1fr;
  }
  .world {
    min-height: 210px;
  }
  .newsletter-box {
    padding: 38px 24px;
  }
  .newsletter h2 {
    font-size: 37px;
  }
  .bottom {
    flex-direction: column;
    gap: 8px;
  }
}
