* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #F4732C;
  --accent-deep: #D9601F;
  --text: #1b1714;
  --tagline: #FFB27A;
  --subtext: #fff4ec;
}

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(160deg, rgba(20, 14, 10, .55), rgba(8, 6, 5, .86)),
    url('images/baground_img.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #1C1C1C;
  color: var(--text);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(244, 115, 44, .32), transparent 42%),
    radial-gradient(circle at 88% 85%, rgba(244, 115, 44, .16), transparent 50%);
  z-index: 0;
}

.single-section {
  position: relative;
  z-index: 1;
  width: min(92vw, 640px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, .16) 0%, rgba(255, 237, 228, .08) 42%, rgba(0, 0, 0, .1) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 28px;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, .75),
    0 1px 0 rgba(255, 255, 255, .22) inset,
    0 0 0 1px rgba(255, 255, 255, .06) inset;
  overflow: hidden;
  animation: revealUp .6s ease both;
}

.single-section::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -26%;
  width: 72%;
  height: 160%;
  border-radius: 40%;
  transform: rotate(17deg);
  background: linear-gradient(115deg, rgba(255, 219, 194, .22), rgba(255, 219, 194, .05) 40%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.single-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep), #1C1C1C);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.18rem;
  line-height: 0;
}

.brand-logo {
  width: clamp(260px, 40vw, 430px);
  aspect-ratio: 3.6 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.tagline {
  font-size: clamp(0.94rem, 2.5vw, 1.1rem);
  color: var(--tagline);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

.subline {
  font-size: clamp(0.87rem, 2.1vw, 1rem);
  color: var(--subtext);
  text-align: center;
  margin-bottom: 0.6rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(244, 115, 44, 0.35);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.simple-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf7, #fff3eb);
  border: 1px solid rgba(230, 92, 34, 0.25);
  border-radius: 14px;
  padding: 0.78rem 0.95rem;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: linkIn .5s ease both;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.simple-link:nth-of-type(2) {
  animation-delay: .08s;
}

.simple-link:nth-of-type(3) {
  animation-delay: .16s;
}

@keyframes linkIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.simple-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(244, 115, 44, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.simple-link::after {
  content: ">";
  color: var(--accent-deep);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.85;
  flex-shrink: 0;
  margin-left: auto;
}

.simple-link:hover {
  background: #fff0e6;
  border-color: rgba(230, 92, 34, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px -16px rgba(0, 0, 0, 0.85);
}

.simple-link:hover i {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.simple-link:focus-visible {
  outline: 2px solid rgba(230, 92, 34, 0.65);
  outline-offset: 2px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  opacity: 0;
  animation: linkIn .5s ease .24s both;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--subtext);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.social-link:focus-visible {
  outline: 2px solid rgba(230, 92, 34, 0.65);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .single-section,
  .simple-link,
  .social-row {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.75rem;
    background-attachment: scroll;
    background-position: center top;
  }

  body::before {
    background:
      radial-gradient(circle at 18% 12%, rgba(244, 115, 44, .28), transparent 40%),
      radial-gradient(circle at 85% 90%, rgba(244, 115, 44, .14), transparent 50%);
  }

  .single-section {
    width: 100%;
    border-radius: 18px;
    padding: 0.9rem 0.85rem;
  }

  .brand-row {
    margin-bottom: 0.15rem;
  }

  .brand-logo {
    width: clamp(220px, 72vw, 320px);
    aspect-ratio: 3.6 / 1;
  }

  .simple-link {
    padding: 0.7rem 0.85rem;
    font-size: 0.98rem;
    gap: 0.6rem;
  }

  .simple-link i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .tagline {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .subline {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

.py-section-gap {

  padding-bottom: 100px;
}