@font-face {
  font-family: "Sadeed Handicrafts";
  src: url("../assets/fonts/handicrafts-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sadeed Handicrafts";
  src: url("../assets/fonts/handicrafts-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sadeed Handicrafts";
  src: url("../assets/fonts/handicrafts-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0e1413;
  --muted: #52605e;
  --teal: #4f9691;
  --teal-dark: #236b66;
  --orange: #ef9227;
  --whatsapp: #177c65;
  --wash: #eaf4f3;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--wash);
  font-family: "Sadeed Handicrafts", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a,
button,
video {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
video:focus-visible {
  outline: 3px solid rgb(239 146 39 / 38%);
  outline-offset: 4px;
}

.page-sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgb(234 244 243 / 20%), var(--wash) 88%),
    url("../assets/img/sky.webp") center top / cover no-repeat;
}

.page-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 79% 18%, rgb(255 255 255 / 72%), transparent 26%),
    linear-gradient(90deg, rgb(234 244 243 / 70%), transparent 49%, rgb(234 244 243 / 26%));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 42px;
  object-fit: contain;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding-inline: 18px 15px;
  color: var(--teal-dark);
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 999px;
  background: rgb(255 255 255 / 48%);
  box-shadow: 0 9px 24px rgb(37 91 88 / 9%), inset 0 1px rgb(255 255 255 / 86%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.home-link:hover {
  transform: translateY(-2px);
  background: rgb(255 255 255 / 72%);
}

.home-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-page {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(46px, 7vw, 104px);
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 155px);
  margin-inline: auto;
  padding-block: 34px 62px;
}

.channel-copy {
  padding-block: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgb(239 146 39 / 12%);
}

.channel-copy h1 {
  margin: 21px 0 18px;
  font-size: clamp(43px, 4.6vw, 70px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.channel-copy h1 span {
  color: var(--teal-dark);
}

.channel-copy > p {
  max-width: 575px;
  margin: 0;
  color: #3f4e4c;
  font-size: 18px;
  line-height: 1.9;
}

.channel-benefits {
  display: grid;
  gap: 14px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.channel-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-mark {
  display: block;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
}

.channel-benefits li > span:last-child {
  display: grid;
}

.channel-benefits b {
  font-size: 16px;
}

.channel-benefits small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.quiet-note {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 29px;
  padding: 11px 16px;
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 15px;
  background: rgb(255 255 255 / 36%);
  box-shadow: 0 11px 28px rgb(34 83 80 / 7%), inset 0 1px rgb(255 255 255 / 76%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quiet-note svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiet-note > span {
  display: grid;
}

.quiet-note b {
  font-size: 13px;
}

.quiet-note small {
  color: var(--muted);
  font-size: 11px;
}

.channel-media {
  position: relative;
  padding: clamp(18px, 2.2vw, 27px);
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 28px;
  background: rgb(246 252 251 / 48%);
  box-shadow:
    0 32px 75px rgb(32 82 79 / 16%),
    inset 0 1px rgb(255 255 255 / 88%);
  backdrop-filter: blur(30px) saturate(135%);
  -webkit-backdrop-filter: blur(30px) saturate(135%);
}

.media-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-inline: 2px;
}

.media-heading > div {
  display: grid;
}

.media-heading > div > span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.media-heading h2 {
  margin: 2px 0 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.video-format {
  color: #6c7b78;
  font-size: 11px;
  letter-spacing: .05em;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: visible;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 18px;
  background: #d7ebea;
  box-shadow:
    0 18px 40px rgb(31 82 78 / 15%),
    inset 0 1px rgb(255 255 255 / 82%);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #d8eceb;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  padding: 30px;
  overflow: hidden;
  border-radius: inherit;
  background: rgb(226 242 241 / 47%);
  text-align: center;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.video-placeholder::before,
.video-placeholder::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
}

.video-placeholder::before {
  top: -120px;
  right: -70px;
}

.video-placeholder::after {
  bottom: -135px;
  left: -60px;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 3px;
  border: 1px solid rgb(255 255 255 / 84%);
  border-radius: 50%;
  background: rgb(255 255 255 / 55%);
  box-shadow: 0 13px 26px rgb(32 82 79 / 14%), inset 0 1px rgb(255 255 255 / 90%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.play-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--teal-dark);
}

.video-placeholder b {
  font-size: 17px;
}

.video-placeholder small {
  color: #576764;
  font-size: 11px;
}

.video-frame.has-video .video-placeholder {
  opacity: 0;
}

.media-owl {
  position: absolute;
  z-index: 3;
  top: -66px;
  left: -43px;
  width: clamp(70px, 12vw, 108px);
  height: auto;
  filter: drop-shadow(0 14px 14px rgb(31 82 78 / 18%));
  transform: rotate(-7deg);
  pointer-events: none;
}

.join-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  margin-top: 18px;
  padding: 9px 16px 9px 19px;
  color: white;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 18px;
  background: var(--whatsapp);
  box-shadow:
    0 17px 34px rgb(23 124 101 / 24%),
    inset 0 1px rgb(255 255 255 / 20%);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.join-button:hover {
  transform: translateY(-2px);
  background: #126d59;
  box-shadow: 0 21px 40px rgb(23 124 101 / 29%), inset 0 1px rgb(255 255 255 / 22%);
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 23%);
  border-radius: 13px;
  background: rgb(255 255 255 / 13%);
}

.whatsapp-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: white;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-button > span:nth-child(2) {
  display: grid;
  text-align: right;
}

.join-button b {
  font-size: 16px;
}

.join-button small {
  color: rgb(255 255 255 / 74%);
  font-size: 10px;
}

.button-arrow {
  font-size: 21px;
  transition: transform 180ms ease;
}

.join-button:hover .button-arrow {
  transform: translateX(-4px);
}

.join-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: #566663;
  font-size: 11px;
}

.join-assurance span {
  color: var(--teal-dark);
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 8px 27px;
  color: #6f7e7b;
  font-size: 11px;
}

@media (max-width: 1020px) {
  .channel-page {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
    gap: 36px;
    padding-top: 12px;
  }

  .channel-copy {
    text-align: center;
  }

  .channel-copy > p {
    margin-inline: auto;
  }

  .channel-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .channel-benefits li {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 13px 9px;
    border: 1px solid rgb(255 255 255 / 66%);
    border-radius: 14px;
    background: rgb(255 255 255 / 29%);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .quiet-note {
    margin-inline: auto;
    text-align: right;
  }
}

@media (max-width: 620px) {
  .page-sky {
    background-image:
      linear-gradient(180deg, rgb(234 244 243 / 20%), var(--wash) 88%),
      url("../assets/img/sky-sm.webp");
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 36px;
  }

  .home-link {
    min-height: 44px;
    padding-inline: 13px 11px;
    font-size: 12px;
  }

  .channel-page {
    width: calc(100% - 24px);
    gap: 27px;
    padding-block: 18px 42px;
  }

  .channel-copy {
    padding-block: 10px 0;
  }

  .channel-copy h1 {
    margin-block: 17px 13px;
    font-size: clamp(35px, 10.8vw, 47px);
  }

  .channel-copy > p {
    font-size: 15px;
    line-height: 1.8;
  }

  .channel-benefits {
    gap: 5px;
    margin-top: 23px;
  }

  .channel-benefits li {
    padding: 10px 5px;
  }

  .benefit-mark {
    font-size: 16px;
  }

  .channel-benefits b {
    font-size: 10px;
    line-height: 1.3;
  }

  .channel-benefits small {
    display: none;
  }

  .quiet-note {
    width: 100%;
    margin-top: 18px;
    padding-inline: 12px;
  }

  .channel-media {
    padding: 16px 12px 14px;
    border-radius: 22px;
  }

  .media-heading {
    margin-bottom: 13px;
  }

  .media-heading h2 {
    font-size: 19px;
  }

  .video-frame {
    border-radius: 14px;
  }

  .video-placeholder {
    gap: 4px;
    padding: 18px;
  }

  .play-mark {
    width: 50px;
    height: 50px;
  }

  .video-placeholder b {
    font-size: 13px;
  }

  .video-placeholder small {
    font-size: 9px;
  }

  .media-owl {
    top: -48px;
    left: -9px;
    width: 69px;
  }

  .join-button {
    min-height: 65px;
    margin-top: 13px;
    border-radius: 15px;
  }

  .whatsapp-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .join-button b {
    font-size: 14px;
  }

  footer {
    display: grid;
    width: calc(100% - 32px);
    text-align: center;
  }
}

@media (max-width: 380px) {
  .home-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .home-link {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .video-format {
    display: none;
  }

  .join-button {
    gap: 9px;
    padding-inline: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .channel-media,
  .quiet-note,
  .channel-benefits li {
    background: #f4faf9;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
