:root {
  --bg: #f5f0e5;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: #ffffff;
  --text: #22170f;
  --muted: #685849;
  --line: rgba(133, 103, 60, 0.18);
  --gold: #c7a063;
  --gold-deep: #8e6633;
  --gold-soft: #ead7af;
  --ink: #120d08;
  --ink-soft: #1f1710;
  --shadow: 0 28px 70px rgba(51, 33, 9, 0.14);
  --radius-xl: 36px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 217, 188, 0.8), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(195, 162, 107, 0.2), transparent 22%),
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 44%, #efe6d9 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
  opacity: 0.3;
  z-index: 0;
}

.page-shell::before {
  top: -12vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(198, 163, 101, 0.22), transparent 62%);
}

.page-shell::after {
  bottom: -18vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(215, 190, 146, 0.18), transparent 62%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid rgba(187, 149, 88, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(240, 214, 159, 0.2), transparent 42%),
    linear-gradient(180deg, #ffffff, #f6efe1);
  border: 1px solid rgba(199, 160, 99, 0.3);
  padding: 10px;
  box-shadow: 0 14px 34px rgba(95, 70, 33, 0.16);
}

.brand-script,
.eyebrow {
  display: block;
}

.brand-script {
  font-family: "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 0.88;
  color: var(--gold-deep);
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a,
.admin-launch,
.filter-chip,
.tab-button {
  transition: 180ms ease;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-deep);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--text);
  border-radius: 999px;
}

.admin-launch,
.button,
.filter-chip,
.tab-button,
.media-card button {
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.admin-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--gold-soft), #f5ead2);
  color: var(--gold-deep);
  font-weight: 700;
}

.admin-launch:hover,
.button:hover,
.filter-chip:hover,
.tab-button:hover {
  transform: translateY(-1px);
}

.shield {
  font-size: 1rem;
}

main {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

section {
  padding: 92px 0;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 8.2vw, 7rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.hero-text,
.section-note,
.about-copy p,
.contact-card p,
.aside-card p,
.floating-note span,
.messages-head p {
  font-size: 1.17rem;
  line-height: 1.62;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fffdf7;
  box-shadow: 0 16px 32px rgba(140, 103, 53, 0.24);
}

.button-secondary {
  background: rgba(255, 251, 243, 0.82);
  color: var(--gold-deep);
  border-color: rgba(187, 149, 88, 0.28);
}

.button-full {
  width: 100%;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li,
.meta-pill {
  padding: 10px 14px;
  background: rgba(255, 252, 245, 0.66);
  border: 1px solid rgba(187, 149, 88, 0.16);
  border-radius: 999px;
  font-size: 0.98rem;
  color: var(--gold-deep);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.86), rgba(243, 234, 217, 0.72));
  border: 1px solid rgba(187, 149, 88, 0.16);
  box-shadow: 0 14px 28px rgba(84, 54, 18, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 1.3rem;
}

.metric-card span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.hero-card,
.about-photo-wrap,
.contact-card,
.aside-card,
.messages-table-wrap,
.modal-panel,
.stat-card,
.admin-form,
.media-card,
.portfolio-item,
.video-item {
  background: var(--surface);
  border: 1px solid rgba(187, 149, 88, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: 42px;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  justify-items: center;
  background:
    radial-gradient(circle at top, rgba(208, 170, 107, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #f3ead9 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(199, 160, 99, 0.22);
}

.hero-logo {
  width: min(100%, 500px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(120, 92, 48, 0.18));
}

.hero-logo-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(220, 183, 119, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 240, 226, 0.94));
  border: 1px solid rgba(236, 209, 154, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(222, 188, 128, 0.18);
}

.hero-orbit-one {
  width: 620px;
  height: 620px;
}

.hero-orbit-two {
  width: 440px;
  height: 440px;
}

.hero-stamp {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 250px;
  color: rgba(76, 55, 28, 0.88);
}

.hero-stamp p {
  margin: 0;
  line-height: 1.55;
  font-size: 1.02rem;
}

.hero-stamp-line {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: 28px;
  width: min(280px, 72%);
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(199, 160, 99, 0.24);
  box-shadow: 0 18px 40px rgba(64, 40, 8, 0.12);
}

.floating-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 1.12rem;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 760px;
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.about-photo-wrap {
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 231, 208, 0.72));
}

.about-photo {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 24px;
}

.about-copy {
  padding: 12px 0;
}

.about-highlight {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(233, 216, 182, 0.35), rgba(255, 253, 247, 0.4));
  border-radius: 0 24px 24px 0;
}

.about-highlight span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.about-highlight strong {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}

.signature-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.signature-band {
  display: grid;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(24, 17, 11, 0.96), rgba(50, 35, 22, 0.94));
  border: 1px solid rgba(201, 165, 106, 0.22);
  box-shadow: 0 24px 60px rgba(16, 11, 7, 0.22);
}

.signature-band p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 248, 234, 0.92);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.28;
}

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

.signature-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(222, 188, 128, 0.18);
  color: rgba(255, 244, 221, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.boutique-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.boutique-video-card,
.boutique-copy {
  background: var(--surface);
  border: 1px solid rgba(187, 149, 88, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: 32px;
}

.boutique-video-card {
  padding: 18px;
}

.boutique-video {
  width: 100%;
  border-radius: 24px;
  background: #140f0a;
  min-height: 280px;
}

.boutique-copy {
  padding: 30px;
}

.boutique-note {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, rgba(233, 216, 182, 0.35), rgba(255, 253, 247, 0.4));
}

.boutique-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.boutique-note strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.boutique-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

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

.filter-chip,
.tab-button {
  padding: 10px 16px;
  background: rgba(255, 252, 245, 0.9);
  color: var(--muted);
  border: 1px solid rgba(187, 149, 88, 0.16);
}

.filter-chip.is-active,
.tab-button.is-active {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fffef8;
  border-color: transparent;
}

.portfolio-layout {
  display: grid;
  gap: 36px;
}

.portfolio-subtitle {
  margin-bottom: 18px;
}

.portfolio-grid,
.video-grid,
.admin-media-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-item,
.video-item,
.media-card {
  border-radius: 26px;
  overflow: hidden;
}

.portfolio-item img,
.video-item video,
.media-card img,
.media-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #e8decc;
}

.card-content {
  padding: 20px;
}

.card-content p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-card,
.aside-card {
  padding: 30px;
  border-radius: 30px;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label span {
  color: var(--text);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(187, 149, 88, 0.2);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(187, 149, 88, 0.8);
  box-shadow: 0 0 0 4px rgba(187, 149, 88, 0.12);
}

textarea {
  resize: vertical;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(187, 149, 88, 0.16);
}

.piercing-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.piercing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.piercing-card {
  padding: 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(214, 179, 120, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 234, 217, 0.9));
  border: 1px solid rgba(199, 160, 99, 0.22);
  box-shadow: var(--shadow);
}

.piercing-card-inner {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(199, 160, 99, 0.18);
}

.piercing-info-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.piercing-info-item {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(187, 149, 88, 0.14);
}

.piercing-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}

.piercing-info-item strong,
.piercing-info-item a {
  font-size: 1.35rem;
  color: var(--text);
}

.piercing-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.process-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fffdf8;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 24px auto 32px;
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 1.02rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 12, 0.5);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(1100px, calc(100% - 20px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 28px;
  border-radius: 30px;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  cursor: pointer;
}

.admin-login {
  max-width: 420px;
  margin: 32px auto;
}

.admin-login-form,
.admin-form {
  margin-top: 22px;
}

.admin-dashboard.is-hidden,
.admin-login.is-hidden,
.tab-panel,
.is-hidden {
  display: none;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 18px;
  border-radius: 24px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 2rem;
  color: var(--gold-deep);
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-panel.is-active {
  display: block;
}

.admin-form {
  padding: 22px;
  border-radius: 26px;
  margin-bottom: 20px;
}

.messages-table-wrap {
  border-radius: 24px;
  overflow: hidden;
}

.messages-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.messages-table th,
.messages-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(187, 149, 88, 0.12);
  vertical-align: top;
}

.messages-table th {
  color: var(--gold-deep);
  background: rgba(255, 252, 245, 0.82);
}

.media-card {
  border-radius: 26px;
}

.media-card-content {
  padding: 16px;
}

.media-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.media-card button {
  padding: 10px 14px;
  background: rgba(140, 103, 53, 0.08);
  color: var(--gold-deep);
  border-color: rgba(187, 149, 88, 0.16);
}

.form-feedback {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--gold-deep);
}

.supabase-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px 22px;
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.9);
  border: 1px dashed rgba(187, 149, 88, 0.28);
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-section,
  .boutique-layout,
  .about-grid,
  .contact-layout,
  .portfolio-layout,
  .piercing-hero {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

  .portfolio-grid,
  .video-grid,
  .admin-media-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .admin-launch {
    justify-content: center;
  }

  .form-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .hero-stamp {
    position: static;
    max-width: none;
    align-self: end;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-card {
    min-height: 420px;
    padding: 18px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .signature-band {
    padding: 22px 20px;
  }

  .hero-logo-stage {
    min-height: 260px;
    padding: 18px;
  }

  .hero-orbit-one {
    width: 420px;
    height: 420px;
  }

  .hero-orbit-two {
    width: 280px;
    height: 280px;
  }

  .portfolio-grid,
  .video-grid,
  .admin-media-list {
    grid-template-columns: 1fr;
  }

  .piercing-card-inner {
    padding: 24px 18px;
  }

  .portfolio-item img,
  .video-item video,
  .media-card img,
  .media-card video {
    height: 240px;
  }

  .modal-panel {
    padding: 22px 16px;
  }
}
