/* Refactored tokinsroots_responsive.css
 - Duplicate selectors merged
 - Duplicate properties removed within blocks
 - Original behavior preserved
 - Section headers added
*/

/* Global Karma font application */
* {
  font-family: 'Karma', serif;
}

body {
  font-family: 'Karma', serif;
}

@media (min-width: 900px){

}

@supports not (width: fit-content){

}

/* ===================== Header & Navigation ===================== */

.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding-bottom: .75rem;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #222;
  padding: .25rem .5rem;
  border-radius: .375rem;
}

.nav a:focus, .nav a:hover {
  background: #f3f4f6;
}

.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================== Layout & Containers ===================== */

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

#main > .inner {
  width: min(var(--page-max), 92vw) !important;
  margin: 0 auto !important;
  padding: clamp(24px, 4vw, 64px) clamp(16px, 4vw, 48px) !important;
}

#main > .inner > .full,
#main > .inner > .full.screen,
#main > .inner > * > .full,
#main > .inner > * > .full.screen {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  left: auto !important;
  right: auto !important;
}

.container.style2,
.container.style3 {
  border: none !important;
}

.container.style2 > .wrapper,
.container.style3 > .wrapper {
  max-width: var(--page-max) !important;
  margin: 0 auto !important;
}

.container.style2.columns > .wrapper > .inner,
.container.style3.columns > .wrapper > .inner {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 32px) !important;
  align-items: start;
}

.container.style2.columns > .wrapper > .inner,
  .container.style3.columns > .wrapper > .inner {
  grid-template-columns: 1fr 1fr !important;
}

#container03 .wrapper,
#container03 .wrapper > .inner {
  max-width: var(--page-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#container03 .wrapper > .inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(16px, 2vw, 32px) !important;
}

/* ===================== Typography ============================== */

section h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.price {
  font-weight: 600;
}

h1.style1, h2.style1, h3.style1, p.style1 {
  font-size: clamp(40px, 3.5vw, 55px) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  text-align: center;
  margin-inline: auto;
}

h1.style4, h2.style4, h3.style4, p.style4 {
  font-size: clamp(40px, 3.5vw, 55px) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  text-align: center;
  margin-inline: auto;
}

/* Left-align specific section headers */
#text27, #text58, #text24 {
  text-align: left !important;
  margin-inline: 0 !important;
}

p.style2 {
  font-size: clamp(18px, 1.8vw, 24px) !important;
  line-height: 1.6 !important;
  max-width: 65ch;
  margin-inline: auto;
}

#container03 h1, #container03 h2, #container03 h3, #container03 p.style1 {
  text-align: center !important;
  margin-inline: auto !important;
}

.payment-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.payment-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  display: block;
  border-radius: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.878);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.payment-modal img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: calc(1.75rem - 2px);
}

.payment-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.payment-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ===================== Buttons & Links ========================= */

*, *::before, *::after {
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 0;
}

.brand img {
  height: 48px;
  width: auto;
}

.lead {
  color: #4b5563;
  max-width: 65ch;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card .body {
  padding: .75rem .9rem;
  display: grid;
  gap: .5rem;
}

.btn {
  display: inline-block;
  padding: .6rem .9rem;
  border-radius: .6rem;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: #111;
}

.video .frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.75rem !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.878) !important;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video .frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(1.75rem - 1px) !important;
}

.video .frame::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: all 0.2s ease;
}

.video .frame:hover::after {
  background: rgba(0, 0, 0, 0.6);
}

.video .frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: calc(1.75rem - 1px) !important;
  position: absolute;
  top: 0;
  left: 0;
}

.video.is-active .frame::after {
  display: none;
}

#text02 ~
  #text02 ~ .image.style1 .frame > img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

#text02 ~ .image.style1 {
  display: inline-block;
  vertical-align: top;
  align-items: center;
  margin: 0.5rem;
}

#image03 .frame {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  max-width: var(--page-max);
  margin: 0 auto 1rem auto;
  overflow: hidden;
}

#image03 .frame > img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  object-position: center;
}

.image.style1 .frame {
  border-radius: 1.75rem !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.878) !important;
}

.image .frame > img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  border-radius: calc(1.75rem - 1px) !important;
}

.image.style1 {
  text-align: center;
}

.icons li a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.icons li a svg {
  display: block;
  pointer-events: none;
  position: relative;
}

.icons li a .label {
  display: none;
}

.icons.style1:not(:last-child) {
  margin-bottom: 2.625rem !important;
}

.icons.style1 li a {
  border-radius: 100%;
  height: 2em;
  width: 2em;
  transition: color 0.125s ease, background-color 0.125s ease, border-color 0.125s ease;
}

.icons.style1 li a svg {
  height: 60%;
  width: 60%;
  transition: fill 0.125s ease;
}

.icons.style1 a {
  background-color: #EE765E;
}

.icons.style1 a svg {
  fill: #FFFFFF;
}

.icons.style1 a:hover {
  background-color: #F7826A !important;
}

.image .frame,
.image.style1 .frame {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  border-radius: 1.75rem !important;
  overflow: hidden;
}

.image .frame > img,
img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

#container03 .image.style1 {
  text-align: center !important;
}

#container03 .image.style1 .frame {
  margin-inline: auto !important;
}

#links01 a, #links02 a {
  color: var(--brand-green) !important;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Karma', sans-serif;
}

#links01 a:hover, #links01 a:focus,
#links02 a:hover, #links02 a:focus {
  text-decoration: underline;
}

a[href^="mailto:"] {
  color: #2e7d32 !important;
  text-decoration: none;
}

a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus {
  color: #333333 !important;
  text-decoration: underline;
}

#text02 ~ .image.style1 .frame {
  max-width: 220px;
  margin: 0.5rem auto;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
  width: 100% !important;
  height: auto !important;
  border-radius: 1.75rem !important;
  overflow: hidden;
}

#text02 ~ .image.style1 .frame > img {
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
}

#text02 ~ .image.style1 .frame:hover {
  transform: scale(1.05);
}

/* ===================== Media (Images/Video) ==================== */

img, svg, video {
  max-width: 100%;
  height: auto;
}

.video {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}

/* ===================== Sections ================================ */

section {
  padding: 2rem 0;
}

/* ===================== Footer ================================= */

.footer {
  border-top: 1px solid #eee;
  padding: 1rem 0 3rem;
  color: #6b7280;
  font-size: .95rem;
}

/* ===================== Utilities / Helpers ===================== */

.icons.style1 {
  font-size: 1.5em;
  gap: 1.375rem;
}

.icons.style1:not(:first-child) {
  margin-top: 2.625rem !important;
}

/* ===================== Misc / Other ============================= */

:root {
  --page-max: 1100px;
  --brand-green: #000000;
  --background-height: 100vh;
}

html, body {
  min-height: 100%;
}

body {
  position: relative;
  background-image: url('../assets/images/bg.jpg?v=8ca9de4e');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #FFFCFC;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
}

html {
  -webkit-text-size-adjust: 100%;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.center {
  text-align: center;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0;
  padding: 0;
  list-style: none;
}

.icons li {
  position: relative;
  z-index: 1;
}

body::before {
  background-attachment: scroll;
  height: var(--background-height);
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 0;
  background-image: url('assets/images/bg.jpg?v=8ca9de4e');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FFFCFC;
}

#links01, #links02 {
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin: .5rem 0 0 0;
  list-style: none;
  padding-left: 0;
  text-align: left;
  font-family: 'Karma', serif;
  font-size: 1.10em;
  font-weight: 600;
}

#links01 li, #links02 li {
  margin: .25rem 0;
  display: inline-block;
  margin-right: 1rem;
}

#links01 li a, #links02 li a {
  color: #19191A;
  text-decoration: underline;
  font-family: 'Karma', serif;
  font-size: 1.5em;
  font-weight: 600;
}

#links01 li a:hover, #links02 li a:hover {
  text-decoration: none;
}

/* === HTML Usage Map (class/id counts) ===
  .style1: 11
  .frame: 11
  .image: 8
  .style2: 5
  .p: 5
  .style4: 5
  .inner: 4
  .container: 3
  .full: 3
  .screen: 3
  .wrapper: 3
  .n01: 3
  .label: 3
  .video: 3
  .with-overlay: 3
  .player: 3
  .thumbnail: 3
  .default: 2
  .__cf_email__: 2
  .n02: 2
  .n03: 2
  .links: 2
  .is-loading: 1
  .style3: 1
  .columns: 1
  .icons: 1
  .payment-modal: 1
  .payment-modal-content: 1
  .payment-modal-close: 1
  #icon-85976685de3e4af37529a1ce5d57d2a7: 1
  #icon-c3c8e1063e3b7f84f6b54712741de139: 1
  #wrapper: 1
  #main: 1
  #home-section: 1
  #image03: 1
  #text21: 1
  #text53: 1
  #divider01: 1
  #container14: 1
  #text50: 1
  #image07: 1
  #text51: 1
  #container03: 1
  #text10: 1
  #image01: 1
  #text11: 1
  #icons02: 1
  #icons02-icon-1-title: 1
  #icons02-icon-2-title: 1
  #icons02-icon-3-title: 1
  #text02: 1
  #image08: 1
  #image02: 1
  #image04: 1
  #image05: 1
  #text27: 1
  #links01: 1
  #text58: 1
  #links02: 1
  #text24: 1
  #video01: 1
  #video02: 1
  #video03: 1
  #container11: 1
  #image10: 1
  #done-section: 1
  #paymentModal: 1
  #modalImage: 1
*/