:root {
  color-scheme: light;
  --ink: #0d0a05;
  --charcoal: #15120c;
  --gold: #c8922a;
  --sun: #f5be3d;
  --cream: #f8f2e6;
  --paper: #fffaf0;
  --stone: #d8c9ad;
  --muted: #746b5d;
  --line: rgba(21, 18, 12, 0.16);
  --green: #2e6b4f;
  --sea: #176c75;
  --red: #b44235;
  --shadow: 0 18px 50px rgba(13, 10, 5, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 48px);
  color: var(--paper);
  background: rgba(13, 10, 5, 0.94);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-link img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 200px;
  border-radius: 6px;
  object-fit: unset;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 42px);
  min-width: 0;
}

.site-nav a {
  color: rgba(255, 250, 240, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-btn {
  padding: 4px 10px;
  border: 1px solid #555;
  background: transparent;
  color: #ccc;
  font-size: 12px;
  cursor: pointer;
  border-radius: 3px;
}

.lang-btn.active {
  border-color: #c8a84b;
  color: #c8a84b;
  font-weight: 600;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 92px;
  min-height: 42px;
  border: 1px solid rgba(245, 190, 61, 0.42);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(245, 190, 61, 0.14);
  font-weight: 900;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--paper);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 5, 0.88) 0%, rgba(13, 10, 5, 0.64) 43%, rgba(13, 10, 5, 0.22) 100%),
    linear-gradient(180deg, rgba(13, 10, 5, 0.1), rgba(13, 10, 5, 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(760px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  padding: 88px 0 118px;
  margin-left: clamp(16px, 7vw, 96px);
}

.kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 1000;
  text-decoration: none;
}

.primary-link {
  color: var(--ink);
  background: var(--sun);
}

.secondary-link {
  color: var(--paper);
  border: 1px solid rgba(255, 250, 240, 0.4);
}

.secondary-link.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.66);
}

.primary-link.full {
  width: 100%;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
}

.proof-band div {
  min-height: 112px;
  padding: 24px clamp(16px, 3vw, 42px);
  color: var(--paper);
  background: #211c13;
}

.proof-band span {
  display: block;
  color: rgba(255, 250, 240, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.proof-band strong {
  display: block;
  margin-top: 6px;
  color: var(--sun);
  font-size: 42px;
  line-height: 1;
}

.tagline-strip {
  padding: 28px clamp(16px, 5vw, 72px);
  background: var(--ink);
  text-align: center;
}

.tagline-strip p {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.section-head h2,
.journey-copy h2,
.creator-copy h2,
.contact-section h2,
.cart-head h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.06;
}

.journey-copy p,
.creator-copy p,
.brand-grid p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ── About Section (#about) ─────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  background: var(--cream);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
}

.about-stats div {
  min-height: 100px;
  padding: 20px clamp(16px, 3vw, 42px);
  color: var(--paper);
  background: #18140e;
}

.about-stats span {
  display: block;
  color: rgba(255, 250, 240, 0.6);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--sun);
  font-size: 32px;
  line-height: 1;
}

/* ── Works Section (#works) ─────────────────────────── */
.works-section {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  background: #18140e;
  color: var(--paper);
  display: grid;
  gap: clamp(48px, 7vw, 88px);
}

.works-flagship {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 32px;
  align-items: stretch;
}

.works-flagship-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.works-flagship-copy p {
  color: rgba(255, 250, 240, 0.72);
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.works-flagship > img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 1px solid rgba(245, 190, 61, 0.24);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.works-campaigns {
  display: grid;
  gap: 18px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.campaign-card {
  padding: 18px;
  border: 1px solid rgba(245, 190, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
}

.campaign-brand {
  display: block;
  color: var(--sun);
  font-size: 20px;
  font-weight: 1000;
  margin-bottom: 8px;
  line-height: 1.2;
}

.campaign-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.works-video-placeholder {
  display: grid;
  place-items: center;
  min-height: 200px;
  border: 2px dashed rgba(200, 168, 75, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.03);
}

.works-video-placeholder p {
  margin: 0;
  color: rgba(255, 250, 240, 0.4);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Explore Section (#explore) ──────────────────────── */
.explore-section {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  background: var(--paper);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.explore-card {
  display: grid;
  gap: 14px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 10, 5, 0.06);
  align-content: start;
}

.explore-card-icon {
  font-size: 36px;
  line-height: 1;
}

.explore-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--charcoal);
}

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

.explore-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  background: var(--sun);
  width: fit-content;
  margin-top: 4px;
}

.explore-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

/* ── Shop Section (#shop) ────────────────────────────── */
.shop-section {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  background: var(--paper);
}

.services-block {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.services-block h3 {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  align-content: start;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-size: 12px;
  font-weight: 900;
  width: fit-content;
}

.service-card h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

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

/* ── Contact Section (#contact) ──────────────────────── */
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--paper);
  display: grid;
  gap: clamp(48px, 7vw, 80px);
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.contact-top p {
  color: rgba(255, 250, 240, 0.72);
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.faq-block {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 900;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 16px 20px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 250, 240, 0.08);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tab-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream);
  font-weight: 900;
}

.tab-button.is-active {
  color: var(--paper);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  min-height: 342px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(13, 10, 5, 0.08);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: end;
  padding: 14px;
  color: var(--paper);
  background: var(--charcoal);
}

.product-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(245, 190, 61, 0.3), transparent 55%);
}

.product-visual.guide {
  background: var(--sea);
}

.product-visual.kit {
  background: var(--green);
}

.product-visual.box {
  background: #8b4a2b;
}

.product-visual.experience {
  background: #1f332d;
}

.product-code {
  position: relative;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.product-icon {
  position: relative;
  margin-top: 28px;
  font-size: 40px;
  line-height: 1;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.product-body p {
  margin: 0;
  min-height: 64px;
  color: var(--muted);
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta strong {
  font-size: 22px;
}

.add-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 1000;
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 32px;
  align-items: stretch;
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
  color: var(--paper);
  background: #18140e;
}

.journey-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.journey-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.journey-drop {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 250, 240, 0.72);
  border-left: 3px solid var(--sun);
  padding-left: 12px;
}

.journey-drop strong {
  color: var(--sun);
}

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

.tier-list div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(245, 190, 61, 0.26);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.tier-list span {
  display: block;
  color: rgba(255, 250, 240, 0.6);
  font-size: 12px;
  font-weight: 900;
}

.tier-list strong {
  display: block;
  margin-top: 6px;
  color: var(--sun);
  font-size: 20px;
}

.journey-section > img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 1px solid rgba(245, 190, 61, 0.24);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.creator-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
  background: var(--cream);
}

.portrait-stack {
  position: relative;
  min-height: 520px;
}

.portrait-main {
  width: 86%;
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.creator-logo-badge {
  display: block;
  width: 300px;
  max-width: 70%;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(13,10,5,0.1);
  align-self: flex-start;
  margin-left: 30%;
}

.creator-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.language-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--paper);
  font-weight: 900;
}

.brands-section {
  background: #f1e6d2;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.brand-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.brand-grid span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.brand-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.16;
}

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

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(440px, 100%);
  height: 100vh;
  transform: translateX(105%);
  transition: transform 220ms ease;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -18px 0 48px rgba(13, 10, 5, 0.22);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 32px;
}

.close-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 30px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 16px 22px;
}

.cart-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

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

.qty-controls {
  display: grid;
  grid-template-columns: 32px 32px 32px;
  align-items: center;
  gap: 4px;
}

.qty-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 1000;
}

.qty-controls span {
  text-align: center;
  font-weight: 1000;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.cart-summary strong {
  font-size: 28px;
}

.cart-summary label {
  display: grid;
  gap: 6px;
}

.cart-summary input,
.cart-summary textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--paper);
}

.scrim {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  background: rgba(13, 10, 5, 0.48);
}

.scrim.is-open {
  display: block;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .works-flagship {
    grid-template-columns: 1fr;
  }

  .works-flagship > img {
    min-height: 300px;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 760px;
  }

  .hero picture img {
    object-position: center top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 10, 5, 0.36), rgba(13, 10, 5, 0.86) 58%, rgba(13, 10, 5, 0.94)),
      linear-gradient(90deg, rgba(13, 10, 5, 0.26), rgba(13, 10, 5, 0.22));
  }

  .hero-content {
    align-content: end;
    min-height: 760px;
    margin: 0 auto;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .proof-band strong {
    font-size: 34px;
  }

  .section-head h2,
  .works-flagship-copy h2,
  .creator-copy h2,
  .contact-section h2,
  .cart-head h2 {
    font-size: 40px;
  }

  .proof-band,
  .about-section,
  .explore-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .contact-top {
    grid-template-columns: 1fr;
  }

  .contact-right {
    align-items: flex-start;
  }

  .contact-icon-rows {
    align-items: flex-start;
  }

  .contact-icon-row {
    justify-content: flex-start;
  }

  .platform-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tabs {
    justify-content: start;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-stack {
    min-height: 440px;
  }

  .portrait-main {
    height: 440px;
  }

  .campaign-grid {
    grid-template-columns: 1fr 1fr;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .brand-link {
    width: 112px;
  }

  .brand-link img {
    width: 112px;
  }

  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .proof-band,
  .product-grid,
  .about-stats,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: 92px;
  }

  .product-card {
    min-height: 310px;
  }

  .portrait-stack {
    min-height: 390px;
  }

  .portrait-main {
    width: 100%;
    height: 390px;
  }

  .cart-drawer {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .platform-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: auto;
  }

  .creator-logo-badge {
    width: 180px;
    margin-left: 0;
  }

  .contact-icon-btn {
    width: 50px;
    height: 50px;
  }
}

/* ── Tier Chips (works section) ──────────────────────── */
.tier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.15s;
}

.tier-chip:hover {
  opacity: 0.82;
}

.tier-platinum {
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun), var(--gold));
}

.tier-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun) 0%, var(--gold) 80%);
  opacity: 0.88;
}

.tier-silver {
  color: var(--ink);
  background: var(--stone);
}

/* ── Video Embed (works section) ─────────────────────── */
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(200, 146, 42, 0.2);
  box-shadow: var(--shadow);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Contact Icon Buttons (contact section) ──────────── */
.contact-icon-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-icon-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.contact-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
}

.contact-icon-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.wa-icon-btn {
  background: #25D366;
  color: #fff;
}

.line-icon-btn {
  background: #06C755;
  color: #fff;
}

.email-icon-btn {
  background: #06C755;
  color: #fff;
  font: inherit;
}

/* ── Platform Video Embeds (works section) ───────────── */
.works-platform {
  display: grid;
  gap: 18px;
}

.platform-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.platform-video-item {
  display: grid;
  gap: 10px;
}

.platform-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0806;
  border: 1px solid rgba(200, 146, 42, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.36);
}

.platform-video-wrap iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

.platform-video-wrap .fb-video,
.platform-video-wrap .fb-video > span {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.platform-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--sun);
}

.platform-video-desc {
  font-size: 12px;
  color: rgba(255, 250, 240, 0.55);
  margin-top: 2px;
}

.campaign-card-link {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
}

a.campaign-card {
  text-decoration: none;
  display: block;
}

a.campaign-card:hover {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(245, 190, 61, 0.4);
}

/* ── Social Icon Strip ──────────────────────────────── */
.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  color: rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.12);
  transition: color 0.15s, background 0.15s;
}

.social-icon-link:hover {
  color: var(--sun);
  background: rgba(200, 146, 42, 0.18);
  border-color: rgba(200, 146, 42, 0.38);
}

/* ── Email Modal ────────────────────────────────────── */
.email-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: min(480px, calc(100vw - 32px));
  margin: auto;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
  padding: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.email-modal::backdrop {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
}

.email-modal-inner {
  padding: 36px 32px 32px;
  display: grid;
  gap: 16px;
}

.email-modal-inner h3 {
  margin: 0;
  font-size: 26px;
}

.email-modal-inner .kicker {
  color: var(--gold);
  margin: 0;
}

.email-form {
  display: grid;
  gap: 16px;
}

.email-form label {
  display: grid;
  gap: 6px;
}

.email-form label span {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 250, 240, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.email-form input,
.email-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.07);
  color: var(--paper);
  font-size: 15px;
}

.email-form input:focus,
.email-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: transparent;
  color: var(--paper);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.email-modal .primary-link {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-weight: 900;
}
