@font-face {
  font-family: "Inter";
  src: url("/assets/theme/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/theme/fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/theme/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/theme/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Poppins", "Inter", "Segoe UI", sans-serif;
  --ink: #211c15;
  --ink-soft: #4f4639;
  --paper: #f5f0e6;
  --paper-deep: #e8ddca;
  --paper-muted: #d8c9b3;
  --accent: #806348;
  --accent-soft: #a57f59;
  --border: #c8b79f;
  --shadow: 0 20px 45px rgba(43, 31, 20, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --site-max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(1100px 600px at 8% -5%, #f8f4ec 0%, transparent 65%),
    radial-gradient(760px 420px at 88% 0%, #eee2cf 0%, transparent 70%),
    linear-gradient(180deg, #f6f1e8 0%, #efe4d1 100%);
}

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

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

main {
  display: block;
}

.wrapper {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 1.15rem 4.5rem;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.studio-shell {
  max-width: var(--site-max);
  margin: 0 auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

/* Header and nav */
header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(128, 99, 72, 0.22);
}

.nav-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0.45rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 140px;
}

.brand-logo {
  width: clamp(140px, 16vw, 200px);
  height: clamp(38px, 5vw, 56px);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.site-nav {
  margin-left: auto;
}

.nav-list,
.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.nav-caret {
  border: 5px solid transparent;
  border-top-color: var(--accent);
  transform: translateY(2px);
}

.nav-item.has-children > .nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #f8f3ea;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  z-index: 50;
}

.nav-item.has-children:hover > .nav-submenu {
  display: block;
}

.nav-submenu .nav-item {
  width: 100%;
}

.nav-submenu .nav-link {
  width: 100%;
  border-bottom: 0;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}

.nav-submenu .nav-link:hover {
  background: #efe4d3;
}

.nav-submenu .nav-submenu {
  top: 0;
  left: calc(100% + 8px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.7rem;
}

.phone-badge {
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #ede2d0;
  border: 1px solid #d4c2ab;
  color: #5f503e;
  font-size: 0.8rem;
}

.btn {
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff9ef;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--border);
}

.btn-outline:hover {
  color: var(--ink);
  background: rgba(128, 99, 72, 0.1);
  border-color: var(--accent);
}

.cart-nav-btn {
  min-width: 52px;
  padding-inline: 0.8rem;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f2c67a;
  color: #352313;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 4px;
}

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #c7b59c;
  background: #f2e8d8;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #473a2c;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0.75rem 1.15rem 1rem;
  border-top: 1px solid #d7c6ae;
  background: #f8f2e8;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mnav-list,
.mnav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mnav-item {
  border-bottom: 1px dashed #d8c8b2;
}

.mnav-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
}

.mnav-link {
  font-family: var(--font-ui);
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.mnav-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #cab79f;
  background: #f0e4d3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mnav-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--accent);
  transition: transform 0.2s ease;
}

.mnav-toggle[aria-expanded="true"] .mnav-arrow {
  transform: rotate(180deg);
}

.mnav-panel {
  padding: 0 0 0 0.75rem;
}

.mnav-submenu .mnav-item:last-child {
  border-bottom: 0;
}

/* Studio blocks */
.studio-eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: #6d5a43;
  margin: 0 0 0.85rem;
}

.studio-hero {
  position: relative;
  min-height: clamp(520px, var(--studio-hero-min-height, 72vh), 760px);
  display: flex;
  align-items: end;
  background:
    linear-gradient(130deg, rgba(36, 26, 18, 0.58), rgba(36, 26, 18, 0.3)),
    var(--studio-hero-bg-desktop, none),
    radial-gradient(circle at 20% 18%, rgba(242, 220, 187, 0.34), transparent 55%),
    linear-gradient(135deg, #77624b, #3e3025);
  background-size: cover;
  background-position: center;
  color: #f8f0e2;
  margin-bottom: 2.5rem;
}

.studio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 18, 12, var(--studio-hero-overlay-opacity, 0.75)) 4%, rgba(24, 18, 12, 0.36) 55%, rgba(24, 18, 12, 0.2) 100%);
}

.studio-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.9fr);
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: clamp(2.1rem, 5vw, 4rem);
  align-items: end;
}

.studio-hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.3vw, 4.45rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 600;
  max-width: 15ch;
}

.studio-lead {
  margin: 1rem 0 0;
  max-width: 54ch;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: rgba(249, 241, 228, 0.92);
}

.studio-hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.studio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5b489;
  background: #8e6c4c;
  color: #fffaf1;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease;
}

.studio-btn:hover {
  background: #a27b55;
  transform: translateY(-1px);
}

.studio-btn-light {
  background: rgba(255, 245, 228, 0.14);
  border-color: rgba(255, 238, 208, 0.6);
}

.studio-btn-light:hover {
  background: rgba(255, 245, 228, 0.22);
}

.studio-hero-note {
  background: rgba(242, 230, 211, var(--studio-hero-panel-opacity, 0.16));
  border: 1px solid rgba(255, 244, 225, 0.45);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(2px);
}

.studio-hero-note h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.studio-hero-note p {
  margin: 0.55rem 0 0;
  color: rgba(253, 245, 233, 0.9);
}

.studio-intro,
.studio-work,
.studio-story,
.studio-process {
  margin-top: clamp(2rem, 5vw, 4.2rem);
}

.studio-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: clamp(1.1rem, 3vw, 2rem);
}

.studio-intro-copy h2,
.studio-work-header h2,
.studio-story-copy h2,
.studio-process-header h2,
.studio-contact h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #2b2218;
}

.studio-intro-copy p,
.studio-work-header p,
.studio-story-copy p,
.studio-process-header p,
.studio-contact p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.studio-intro-copy p.lead {
  font-size: 1.17rem;
  color: #443726;
}

.studio-note-card {
  align-self: start;
  background: rgba(255, 249, 239, 0.74);
  border: 1px solid #d9c6ab;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.studio-note-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.studio-note-card p {
  margin: 0.65rem 0 0;
  color: #5b4e3e;
}

.studio-note-card ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  border-top: 1px dashed #d8c4a8;
}

.studio-note-card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #d8c4a8;
}

.studio-note-card li span {
  color: #7a674f;
  font-size: 0.92rem;
}

.studio-note-card li strong {
  font-size: 0.98rem;
  color: #372a1d;
}

.studio-work-header {
  max-width: 64ch;
}

.studio-work-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

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

.studio-work-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-work-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-shop {
  margin-top: 0;
}

.studio-shop-hero {
  position: relative;
  min-height: clamp(320px, 56vh, 520px);
  display: flex;
  align-items: end;
  background:
    linear-gradient(120deg, rgba(33, 23, 16, 0.58), rgba(33, 23, 16, 0.24)),
    var(--shop-hero-bg, none),
    linear-gradient(135deg, #7e6248, #382c23);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1.8rem;
}

.studio-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 15, 10, 0.72), rgba(21, 15, 10, 0.18));
}

.studio-shop-hero-inner {
  position: relative;
  z-index: 1;
  color: #f8efe2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.studio-shop-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.studio-shop-hero p {
  margin: 0.75rem 0 0;
  max-width: 60ch;
  color: rgba(248, 240, 227, 0.9);
}

.studio-shop-toolbar {
  display: grid;
  gap: 0.8rem;
}

.studio-shop-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #ccb89d;
  background: rgba(255, 252, 246, 0.78);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  max-width: 500px;
}

.studio-shop-search i {
  color: #7b664d;
}

.studio-shop-search input {
  border: 0;
  background: transparent;
  width: 100%;
  color: #33271c;
  font-size: 0.95rem;
}

.studio-shop-search input:focus {
  outline: none;
}

.studio-shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.studio-filter-chip {
  border: 1px solid #ccb79d;
  background: #f4ecdf;
  color: #634f39;
  border-radius: 999px;
  padding: 0.38rem 0.74rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.studio-filter-chip.is-active,
.studio-filter-chip:hover {
  border-color: #9f7b56;
  background: #e8d6bc;
  color: #38291c;
}

.studio-shop-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.studio-shop-card {
  border: 1px solid #d9c7af;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 12px 26px rgba(72, 50, 28, 0.09);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.studio-shop-card:hover {
  transform: translateY(-3px);
  border-color: #b99572;
  box-shadow: 0 16px 30px rgba(72, 50, 28, 0.14);
}

.studio-shop-card-media {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(130deg, #957457, #4a3a2d);
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 0.7rem;
}

.studio-shop-card-media.placeholder {
  background-image: linear-gradient(130deg, #8d7054, #423328);
}

.studio-shop-badge {
  display: inline-flex;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  background: rgba(26, 18, 12, 0.72);
  color: #f6ead8;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.studio-shop-card-body {
  padding: 0.9rem;
}

.studio-shop-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.65rem;
}

.studio-shop-card-head h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.05;
  color: #2f2418;
}

.studio-shop-card-head strong {
  color: #6e553a;
  font-size: 0.96rem;
  white-space: nowrap;
}

.studio-shop-card-cat {
  font-family: var(--font-ui);
  margin: 0.35rem 0 0;
  color: #866d53;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.studio-shop-card-blurb {
  margin: 0.55rem 0 0;
  color: #5d4d3b;
}

.studio-shop-empty {
  margin-top: 0.9rem;
  color: #6f5d49;
}

.studio-shop-cta {
  margin-top: 1.1rem;
}

.studio-work-card {
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid #dac9b1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(80, 55, 32, 0.08);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.studio-work-card:hover {
  transform: translateY(-3px);
  border-color: #b79873;
  box-shadow: 0 16px 32px rgba(80, 55, 32, 0.15);
}

.studio-work-image {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(135deg, #957557, #4b3a2d);
  display: flex;
  align-items: start;
  justify-content: end;
  padding: 0.7rem;
}

.studio-work-image.placeholder {
  background-image: linear-gradient(140deg, #8f7359, #4f402f);
}

.studio-work-year {
  display: inline-flex;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  background: rgba(34, 24, 15, 0.6);
  color: #f9efde;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.studio-work-body {
  padding: 0.95rem 0.95rem 1rem;
}

.studio-work-body h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.05;
}

.studio-work-body p {
  margin: 0.45rem 0 0;
  color: #5f503f;
}

.studio-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: center;
}

.studio-story-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.studio-story-grid.reverse .studio-story-copy {
  order: 2;
}

.studio-story-grid.reverse .studio-story-image {
  order: 1;
}

.studio-story-image .image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid #cdbba4;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(130deg, #9b7c5f, #49392c);
}

.studio-story-image .image.placeholder {
  background-image: linear-gradient(130deg, #927457, #3f3227);
}

.studio-story-image figcaption {
  margin-top: 0.58rem;
  font-size: 0.85rem;
  color: #6c5a47;
  letter-spacing: 0.02em;
}

.studio-quote {
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 6vw, 5.8rem) 0;
  background:
    linear-gradient(130deg, rgba(67, 49, 36, 0.84), rgba(40, 30, 22, 0.84)),
    linear-gradient(120deg, #705641, #2d2218);
  background-size: cover;
  background-position: center;
  color: #f8efe1;
  position: relative;
}

.studio-quote-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 8%, rgba(245, 213, 171, 0.16), transparent 44%);
}

.studio-quote .studio-shell {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.studio-quote blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.studio-quote cite {
  margin-top: 1.1rem;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ddc5a2;
}

.studio-process-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.studio-process-list li {
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid #d8c7af;
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 180px;
}

.studio-step-num {
  font-family: var(--font-ui);
  display: inline-block;
  color: #866749;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 1px solid #bea487;
  margin-bottom: 0.65rem;
}

.studio-process-list h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.studio-process-list p {
  margin: 0.55rem 0 0;
  color: #5f503f;
}

.studio-contact {
  margin-top: clamp(2.2rem, 5vw, 4.6rem);
  padding: clamp(2.2rem, 4vw, 3.2rem) 0;
  background:
    linear-gradient(145deg, rgba(233, 220, 201, 0.92), rgba(250, 246, 239, 0.92));
  border-top: 1px solid #dbc9b1;
  border-bottom: 1px solid #dbc9b1;
}

.studio-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.studio-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d3bfa4;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.8);
}

.studio-contact-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px dashed #dccab2;
}

.studio-contact-list li:last-child {
  border-bottom: 0;
}

.studio-contact-list span {
  color: #7f6a52;
  font-size: 0.9rem;
}

.studio-contact-list a,
.studio-contact-list strong {
  color: #34281d;
  font-weight: 600;
}

/* Generic legacy blocks */
section {
  margin-top: 2.3rem;
}

.page-banner-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wysiwyg-block {
  color: var(--ink-soft);
}

.wysiwyg-block h1,
.wysiwyg-block h2,
.wysiwyg-block h3,
.wysiwyg-block h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: inherit;
}

.wysiwyg-block a {
  color: #7c5f43;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Contact form compat */
.contact-form {
  background: rgba(255, 251, 245, 0.78);
  border: 1px solid #d5c1a5;
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

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

.form-field {
  margin-bottom: 0.8rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  color: #cdb99f;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c8b49a;
  border-radius: 10px;
  padding: 0.56rem 0.72rem;
  background: #fffdfa;
  color: #2f2418;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #9a7856;
  box-shadow: 0 0 0 2px rgba(154, 120, 86, 0.14);
}

.form-note,
.contact-small-print {
  color: #6f5d49;
  font-size: 0.86rem;
}

.contact-banner {
  margin: 0 0 1rem;
  border: 1px solid #d8bf8e;
  background: #f4deae;
  color: #563e1d;
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
}

/* Blog pages */
.blog-hero {
  margin-top: 2rem;
}

.blog-hero-inner {
  max-width: 760px;
}

.blog-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.blog-hero p {
  margin: 0.65rem 0 0;
  color: #6c5b47;
}

.blog-filter-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: end;
}

.blog-filter-form input,
.blog-filter-form select {
  border: 1px solid #c7b399;
  border-radius: 10px;
  padding: 0.52rem 0.64rem;
  background: #fffdf9;
  color: #2f2418;
}

.blog-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.blog-card {
  border: 1px solid #d7c5ac;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.8);
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(130deg, #8f7357, #4d3d2f);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-card-body {
  padding: 0.9rem;
}

.blog-card-body h2 {
  margin: 0.45rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.blog-post {
  margin-top: 2rem;
}

.blog-post-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.blog-post-excerpt,
.blog-post-meta {
  color: #6a5742;
}

.blog-post-image {
  margin: 1rem 0 0;
  width: min(100%, 720px);
  border-radius: var(--radius-md);
  border: 1px solid #d7c4aa;
}

/* Bottom disclaimer */
.disclaimer-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 12px;
  border: 1px solid #ccb89e;
  background: rgba(255, 248, 236, 0.95);
  color: #4a3b2c;
  padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow);
}

.disclaimer-close {
  border: 1px solid #b89f7e;
  border-radius: 999px;
  background: #f1e2ca;
  color: #3a2d20;
  padding: 0.34rem 0.74rem;
  cursor: pointer;
}

/* Cart drawer */
.cart-drawer[hidden],
.cart-backdrop[hidden] {
  display: none !important;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 97;
  background: rgba(31, 23, 17, 0.42);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 98;
  width: min(430px, 94vw);
  height: 100vh;
  background: #f6efe3;
  color: #302418;
  border-left: 1px solid #ccb89e;
  display: flex;
  flex-direction: column;
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 0.8rem;
  border-bottom: 1px solid #d8c4ab;
}

.cart-drawer-footer {
  border-top: 1px solid #d8c4ab;
  border-bottom: 0;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.cart-item {
  border: 1px solid #d5c2a8;
  border-radius: 10px;
  background: #fcf7ef;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #e7d7bf center / cover no-repeat;
}

.cart-item-qty input {
  width: 64px;
  border: 1px solid #cdb89c;
  border-radius: 8px;
  padding: 0.3rem 0.45rem;
  background: #fff;
}

.cart-close {
  border: 1px solid #b79c7a;
  background: #f1e3cc;
  color: #3b2c1d;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

/* Footer */
footer {
  margin-top: 4rem;
  border-top: 1px solid #ccb79d;
  padding: 1.2rem 1.15rem 2rem;
  background: rgba(232, 219, 198, 0.45);
}

.footer-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #6e5c48;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-links a {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: #403124;
}

/* Utility */
.muted {
  color: #7a684f;
}

.small {
  font-size: 0.84rem;
}

.hidden {
  display: none !important;
}

/* Reveal motion */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-cta .phone-badge {
    display: none;
  }

  .studio-work-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  .studio-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .studio-intro-grid,
  .studio-story-grid,
  .studio-story-grid.reverse,
  .studio-contact-grid {
    grid-template-columns: 1fr;
  }

  .studio-story-grid.reverse .studio-story-copy,
  .studio-story-grid.reverse .studio-story-image {
    order: initial;
  }

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

  .studio-work-grid.cols-3,
  .studio-work-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .wrapper,
  .studio-shell,
  .nav-inner,
  .mobile-nav,
  footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .studio-work-grid,
  .studio-work-grid.cols-2,
  .studio-work-grid.cols-3,
  .studio-work-grid.cols-4,
  .studio-shop-grid,
  .studio-process-list,
  .blog-grid,
  .blog-filter-form {
    grid-template-columns: 1fr;
  }

  .studio-hero.has-mobile-bg {
    background:
      linear-gradient(130deg, rgba(36, 26, 18, 0.62), rgba(36, 26, 18, 0.34)),
      var(--studio-hero-bg-mobile, none),
      radial-gradient(circle at 20% 18%, rgba(242, 220, 187, 0.3), transparent 55%),
      linear-gradient(135deg, #77624b, #3e3025);
    background-size: cover;
    background-position: center;
  }

  .studio-quote blockquote {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }
}

/* Dark Editorial Tone Overrides */
:root {
  --ink: #efe2cf;
  --ink-soft: #cbbca6;
  --paper: #18130f;
  --paper-deep: #231a14;
  --paper-muted: #2f241c;
  --accent: #aa8056;
  --accent-soft: #c69768;
  --border: #4a3a2d;
}

body {
  color: var(--ink);
  background:
    radial-gradient(1100px 620px at 8% -5%, #2b2119 0%, transparent 65%),
    radial-gradient(760px 420px at 88% 0%, #32261d 0%, transparent 70%),
    linear-gradient(180deg, #17120e 0%, #0f0b08 100%);
}

header {
  background: rgba(20, 15, 12, 0.82);
  border-bottom: 1px solid rgba(191, 154, 112, 0.26);
}

.nav-link,
.mnav-link {
  color: #dbcbb5;
}

.nav-link:hover {
  color: #fff1dc;
}

.mobile-nav {
  background: rgba(24, 18, 14, 0.96);
  border-top: 1px solid rgba(191, 154, 112, 0.24);
}

.phone-badge {
  background: rgba(35, 27, 20, 0.76);
  border: 1px solid rgba(190, 151, 106, 0.34);
  color: #cdbda7;
}

.btn-outline {
  color: #e9dbc7;
  border-color: rgba(199, 162, 120, 0.42);
  background: rgba(43, 32, 24, 0.24);
}

.btn-outline:hover {
  color: #fff3e0;
  background: rgba(170, 128, 86, 0.2);
}

.studio-intro-copy h2,
.studio-work-header h2,
.studio-story-copy h2,
.studio-process-header h2,
.studio-contact h2,
.studio-work-body h3,
.studio-process-list h3,
.studio-shop-card-head h3 {
  color: #f3e3cd;
}

.studio-intro-copy p,
.studio-work-header p,
.studio-story-copy p,
.studio-process-header p,
.studio-contact p,
.studio-work-body p,
.studio-process-list p,
.studio-shop-card-blurb,
.blog-hero p,
.blog-post-excerpt,
.blog-post-meta,
.form-note,
.contact-small-print {
  color: #beab95;
}

.studio-note-card,
.studio-work-card,
.studio-process-list li,
.studio-contact-list,
.studio-shop-card,
.blog-card,
.contact-form {
  background: rgba(32, 24, 18, 0.78);
  border-color: rgba(180, 143, 102, 0.36);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.studio-note-card p,
.studio-note-card li span,
.studio-step-num,
.studio-contact-list span,
.studio-shop-card-cat {
  color: #bda88f;
}

.studio-note-card li strong,
.studio-contact-list a,
.studio-contact-list strong {
  color: #f2e2ca;
}

.studio-contact {
  background: linear-gradient(145deg, rgba(26, 20, 15, 0.92), rgba(18, 14, 10, 0.92));
  border-top: 1px solid rgba(180, 143, 102, 0.4);
  border-bottom: 1px solid rgba(180, 143, 102, 0.4);
}

.studio-work-card,
.studio-shop-card {
  backdrop-filter: blur(2px);
}

.studio-shop-search,
.studio-filter-chip,
.blog-filter-form input,
.blog-filter-form select,
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(25, 19, 14, 0.8);
  color: #efdfc8;
  border-color: rgba(180, 143, 102, 0.46);
}

.studio-shop-search i {
  color: #d6bf9f;
}

.studio-filter-chip {
  color: #d7c4a9;
}

.studio-filter-chip.is-active,
.studio-filter-chip:hover {
  background: rgba(170, 128, 86, 0.28);
  color: #f5e7d0;
}

.blog-card-image,
.studio-shop-card-media.placeholder,
.studio-work-image.placeholder,
.studio-story-image .image.placeholder {
  filter: saturate(0.72) brightness(0.72);
}

footer {
  background: rgba(16, 12, 9, 0.82);
  border-top: 1px solid rgba(180, 143, 102, 0.35);
}

.footer-inner,
.footer-links a,
.muted {
  color: #ae9a83;
}

.footer-links a:hover {
  color: #f2e0c7;
}

.disclaimer-banner {
  background: rgba(27, 21, 16, 0.96);
  color: #d8c3a7;
  border-color: rgba(180, 143, 102, 0.42);
}

.disclaimer-close {
  background: rgba(43, 32, 24, 0.9);
  color: #ecd9bc;
  border-color: rgba(180, 143, 102, 0.5);
}

/* ------------------------------
   Seishin polish pass
   ------------------------------ */
.wrapper > section:first-child {
  margin-top: 0 !important;
}

section {
  margin-top: 0;
}

section + section {
  margin-top: clamp(1.35rem, 3.2vw, 2.25rem);
}

.studio-hero {
  margin-top: 0 !important;
  margin-bottom: 1.4rem;
  min-height: clamp(620px, var(--studio-hero-min-height, 84vh), 960px);
  align-items: center;
  background:
    linear-gradient(130deg, rgba(30, 22, 16, 0.58), rgba(30, 22, 16, 0.30)),
    var(--studio-hero-bg-desktop, url('/assets/theme/img/placeholder-hero.svg')),
    radial-gradient(circle at 20% 18%, rgba(242, 220, 187, 0.28), transparent 55%),
    linear-gradient(135deg, #5a4636, #2a211a);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.studio-hero-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding-top: clamp(0.65rem, 2.6vw, 1.65rem);
  padding-bottom: clamp(2.2rem, 6vw, 4rem);
}

.studio-hero-copy {
  max-width: min(920px, 100%);
}

.studio-hero-copy h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.studio-lead {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.studio-hero-actions {
  justify-content: center;
}

.studio-hero-note {
  max-width: min(580px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.studio-hero .studio-eyebrow {
  text-align: center;
}

.studio-shop-hero {
  background:
    linear-gradient(120deg, rgba(33, 23, 16, 0.58), rgba(33, 23, 16, 0.24)),
    var(--shop-hero-bg, url('/assets/theme/img/placeholder-hero.svg')),
    linear-gradient(135deg, #7e6248, #382c23);
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
}

.studio-shop-card-media {
  background-image:
    linear-gradient(130deg, rgba(40, 30, 22, 0.32), rgba(40, 30, 22, 0.06)),
    url('/assets/theme/img/placeholder-card.svg');
  background-position: center 38%;
  background-size: cover;
}

.studio-work-image {
  background-image:
    linear-gradient(135deg, rgba(40, 30, 22, 0.28), rgba(40, 30, 22, 0.06)),
    url('/assets/theme/img/placeholder-card.svg');
  background-position: center 38%;
  background-size: cover;
}

.studio-story-image .image {
  background-image:
    linear-gradient(130deg, rgba(40, 30, 22, 0.24), rgba(40, 30, 22, 0.06)),
    url('/assets/theme/img/placeholder-tall.svg');
  background-position: center 36%;
  background-size: cover;
}

.blog-card-image {
  background-image:
    linear-gradient(130deg, rgba(40, 30, 22, 0.30), rgba(40, 30, 22, 0.08)),
    url('/assets/theme/img/placeholder-card.svg');
  background-position: center 38%;
  background-size: cover;
}

.products-page-card-image,
.project-image,
.project-image-placeholder {
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
}

.products-page-card-image.placeholder,
.project-image-placeholder {
  background-image:
    linear-gradient(130deg, rgba(40, 30, 22, 0.30), rgba(40, 30, 22, 0.10)),
    url('/assets/theme/img/placeholder-card.svg');
}

.products-page-card-placeholder,
.project-image-placeholder .project-image-label {
  color: rgba(245, 230, 208, 0.88);
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.studio-shop-card-media.placeholder,
.studio-work-image.placeholder,
.studio-story-image .image.placeholder {
  position: relative;
  overflow: hidden;
}

.studio-shop-card-media.placeholder::after,
.studio-work-image.placeholder::after,
.studio-story-image .image.placeholder::after {
  content: "Image coming soon";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 232, 214, 0.88);
  padding: 0.26rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 209, 174, 0.38);
  background: rgba(24, 18, 13, 0.58);
  pointer-events: none;
}

@media (max-width: 980px) {
  .studio-hero {
    min-height: clamp(560px, var(--studio-hero-min-height, 78vh), 820px);
    background-position: center 18%;
  }
}

@media (max-width: 700px) {
  .studio-hero {
    min-height: clamp(500px, var(--studio-hero-min-height, 70vh), 700px);
    background-position: center 16%;
  }

  .studio-hero.has-mobile-bg {
    background-position: center 16%;
  }
}

/* ==========================================================
   Seishin Comp Theme Override (global visual system)
   ========================================================== */
:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(201, 168, 110, 0.38);
  --text: #f4eee6;
  --muted: #c9bfb1;
  --soft: #b0a392;
  --gold: #c9a86e;
  --gold-soft: #9e7f51;
  --max: 1380px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(201, 168, 110, 0.06), transparent 34%),
    linear-gradient(180deg, #080808 0%, #0c0c0c 40%, #090909 100%);
  letter-spacing: 0.01em;
}

.wrapper,
.studio-shell,
.nav-inner,
.mobile-nav,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  padding: 0 0 5rem;
}

main {
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  text-align: center;
  line-height: 1;
  justify-self: center;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.brand-logo {
  display: none;
}

.brand__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__sub {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--soft);
  font-family: var(--font-ui);
}

/* Header logo area sizing */
.nav-inner .brand__mark {
  font-size: clamp(1.85rem, 2.75vw, 2.6rem);
  letter-spacing: 0.16em;
}

.nav-inner .brand__sub {
  margin-top: 9px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #c8b89f;
}

footer .brand,
.footer-inner .brand {
  align-items: center;
  justify-self: center;
  text-align: center;
  margin-left: 0;
  grid-column: 1;
  min-width: 0;
}

.footer-inner > div:first-child .footer-links {
  justify-items: start;
}

.site-nav,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  margin-left: 0;
  grid-column: 1;
  justify-self: start;
}

.nav-cta {
  margin-left: 0;
  justify-content: flex-end;
  grid-column: 3;
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link,
.nav-cta a,
.phone-badge,
.mnav-link,
.hamburger,
.menu-btn {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.nav-cta a:hover,
.phone-badge:hover,
.mnav-link:hover {
  color: var(--text);
}

.site-nav > .nav-list > .nav-item > .nav-link {
  border-bottom: 0;
  padding: 0;
}

.site-nav > .nav-list {
  gap: 24px;
}

.nav-item.has-children > .nav-submenu {
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.nav-submenu .nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.phone-badge {
  border: 0;
  background: transparent;
  padding: 0;
  gap: 8px;
}

.phone-badge i {
  color: var(--gold);
}

.btn,
.studio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover,
.studio-btn:hover {
  transform: translateY(-2px);
  color: var(--text);
}

.btn-outline,
.studio-btn-light {
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover,
.studio-btn-light:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn:not(.btn-outline),
.studio-btn:not(.studio-btn-light) {
  border-color: var(--gold-soft);
  background: rgba(201, 168, 110, 0.08);
}

.btn:not(.btn-outline):hover,
.studio-btn:not(.studio-btn-light):hover {
  background: rgba(201, 168, 110, 0.14);
  border-color: var(--gold);
}

.cart-nav-btn {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.cart-count {
  color: var(--gold);
  font-size: 11px;
  display: inline;
  font-weight: 700;
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: auto;
  grid-column: 3;
  min-height: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-ui);
  color: var(--muted);
}

.nav-cta .btn {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  transform: none;
}

.nav-cta .btn:hover {
  color: var(--text);
  transform: none;
}

.nav-text-link {
  display: inline-block;
}

.mobile-nav {
  margin: 0;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  background: rgba(12, 12, 12, 0.98);
  padding: 14px 20px 16px;
}

.mnav-panel {
  padding-left: 0.8rem;
}

section + section {
  margin-top: 0;
}

.section-header,
.studio-work-header,
.studio-process-header,
.studio-contact-grid > div:first-child {
  display: grid;
  gap: 14px;
}

.section-title,
.studio-hero-copy h1,
.studio-hero-note h2,
.studio-intro-copy h2,
.studio-work-header h2,
.studio-story-copy h2,
.studio-process-header h2,
.studio-contact h2,
.shop-card__name,
.page-hero__title,
.blog-post-header h1,
.product-detail-body h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin: 0.28em 0 0.24em;
}

.section-subtitle,
.section-copy,
.studio-lead,
.studio-intro-copy p,
.studio-work-header p,
.studio-story-copy p,
.studio-process-header p,
.studio-contact p,
.studio-shop-card-blurb,
.blog-post-excerpt,
.blog-card-body p,
.product-detail-desc {
  color: var(--muted);
  line-height: 1.8;
}

.studio-eyebrow,
.eyebrow,
.blog-card-meta,
.products-page-card-cat,
.studio-shop-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-family: var(--font-ui);
}

.studio-eyebrow::before,
.eyebrow::before,
.blog-card-meta::before,
.products-page-card-cat::before,
.studio-shop-card-cat::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--line-strong);
  display: block;
}

.full-bleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.studio-hero,
.hero {
  padding: 34px 0 22px;
  min-height: 0;
  background: none;
}

.studio-hero .hero__frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  min-height: clamp(460px, var(--studio-hero-min-height, 62vh), 760px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  position: relative;
  padding: 0;
  gap: 0;
}

.studio-hero .hero__card {
  padding: clamp(34px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 110, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  color: #eee9e1;
  opacity: 1 !important;
  transform: none !important;
  z-index: 2;
}

.studio-hero .hero__media {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
    var(--studio-hero-media-bg, url('/assets/theme/img/placeholder-hero.svg')) center/cover no-repeat;
  min-height: clamp(420px, var(--studio-hero-min-height, 62vh), 760px);
  position: relative;
}

.studio-hero .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62));
}

.studio-hero .hero__card h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 8ch;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: #eee9e1;
  white-space: pre-line;
}

.studio-hero .hero__card p {
  margin: 0 0 30px;
  max-width: 48ch;
  color: #b6aea2;
  line-height: 1.9;
  white-space: pre-line;
}

.studio-hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn--primary {
  border-color: var(--gold-soft);
  background: rgba(201, 168, 110, 0.08);
}

.btn--primary:hover {
  background: rgba(201, 168, 110, 0.14);
}

.studio-hero .hero__meta {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.studio-hero .hero__meta-item span {
  display: block;
  font-size: 11px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  font-family: var(--font-ui);
}

.studio-hero .hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: #eee9e1;
}

.studio-hero [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.studio-intro,
.studio-work,
.studio-story,
.studio-process,
.studio-contact,
.studio-shop,
.blog-hero,
.products-page-hero,
.product-detail,
.checkout-page,
.event-detail-page {
  padding: 90px 0;
  margin-top: 0;
}

.studio-note-card,
.studio-work-card,
.studio-shop-card,
.blog-card,
.checkout-card,
.contact-form,
.project-card,
.products-page-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
  border-radius: 0;
  box-shadow: none;
}

.studio-work-grid,
.studio-shop-grid,
.blog-grid,
.products-page-grid,
.projects-grid {
  gap: 16px;
}

.studio-work-image,
.studio-shop-card-media,
.studio-story-image .image,
.blog-card-image,
.products-page-card-image,
.product-detail-main,
.project-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
}

.studio-work-image,
.studio-shop-card-media,
.blog-card-image,
.products-page-card-image,
.project-image {
  aspect-ratio: 16 / 11;
}

.studio-story-grid,
.studio-intro-grid,
.studio-contact-grid,
.checkout-grid {
  gap: 18px;
}

.studio-story-image .image,
.product-detail-main {
  min-height: 520px;
}

.studio-process-list li,
.details-list__item,
.material-item,
.checkout-line {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.studio-process-list li:first-child,
.checkout-line:first-child {
  border-top: 0;
  padding-top: 0;
}

.studio-step-num {
  color: var(--gold);
  font-family: var(--font-display);
}

.studio-quote {
  background:
    linear-gradient(130deg, rgba(67, 49, 36, 0.84), rgba(40, 30, 22, 0.84)),
    var(--studio-quote-bg, url('/assets/theme/img/placeholder-hero.svg')) center/cover no-repeat;
  border: 1px solid var(--line);
  margin: 90px 0 0;
}

.studio-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0;
}

.studio-shop-toolbar,
.products-page-filter-form,
.blog-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.studio-shop-search,
.products-page-filter-form input,
.products-page-filter-form select,
.blog-filter-form input,
.blog-filter-form select,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 0;
  min-height: 48px;
  padding: 0 14px;
}

.blog-filter-form input[type="date"] {
  color-scheme: light;
}

.blog-filter-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.95;
}

.checkout-form textarea,
.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
}

.studio-filter-chip,
.chip,
.badge-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-radius: 0;
  padding: 0.52rem 0.75rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-ui);
}

.studio-filter-chip.is-active,
.studio-filter-chip:hover,
.chip.active,
.chip:hover,
.badge-pill-active,
.badge-pill:hover {
  border-color: var(--gold-soft);
  color: var(--text);
  background: rgba(201, 168, 110, 0.1);
}

.product-detail-grid {
  gap: 20px;
}

.event-detail-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.event-detail-hero {
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(67, 49, 36, 0.8), rgba(24, 20, 17, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(197, 154, 108, 0.22), transparent 60%);
  padding: clamp(20px, 4vw, 40px);
}

.event-detail-subtitle {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.event-detail-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(18px, 3.4vw, 34px);
}

.event-detail-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.9;
}

.event-detail-actions {
  margin-top: 20px;
}

.product-detail-price,
.products-page-card-price,
.price {
  color: var(--gold);
  font-size: 1.15rem;
}

.blog-card,
.products-page-card,
.shop-card {
  overflow: hidden;
}

.blog-card-body,
.products-page-card-body,
.shop-card__content,
.studio-shop-card-body,
.studio-work-body {
  padding: 18px;
}

.contact-banner {
  border: 1px solid var(--line-strong);
  background: rgba(201, 168, 110, 0.08);
  color: #e8dcc7;
  padding: 12px 14px;
  margin-bottom: 16px;
}

footer,
.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
  padding: 45px 0;
}

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

.footer-inner > div:first-child {
  grid-column: span 2;
}

.footer-title {
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft);
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.muted {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.disclaimer-banner {
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.95);
  color: var(--muted);
}

.disclaimer-close {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

/* Account pages */
.account-page {
  padding: 72px 0;
}

.account-card {
  border: 1px solid var(--line-strong);
  background: rgba(13, 13, 13, 0.62);
  padding: 18px;
}

.account-card-narrow {
  max-width: 620px;
}

.account-card-wide {
  max-width: 820px;
}

.account-form {
  display: grid;
  gap: 14px;
}

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

.account-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

.account-form input,
.account-form select,
.account-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  width: 100%;
  min-height: 42px;
  height: 42px;
  padding: 8px 12px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.account-form textarea {
  height: auto;
  min-height: 120px;
  padding-top: 10px;
}

.account-form select {
  color-scheme: dark;
}

.account-form select option {
  background: #101010;
  color: #eee9e1;
}

.account-row {
  margin-top: 8px;
  gap: 10px;
}

.account-order-filters {
  margin-bottom: 18px;
}

.account-order-item {
  align-items: center;
}

.account-order-item-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.account-order-thumb {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
  flex: 0 0 48px;
  background: rgba(255, 255, 255, 0.02);
}

/* Use pointer cursor consistently for clickable UI */
a[href],
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
summary,
[role="button"],
.btn,
.account-tab {
  cursor: pointer;
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
  cursor: not-allowed;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.account-tab {
  border: 1px solid var(--line);
  padding: 10px 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.account-tab.is-active {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(201, 168, 110, 0.08);
}

.account-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
}

.account-checkbox input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mobile-nav-links a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

/* Improve cart count readability in header */
.nav-cta .cart-nav-btn {
  border: 1px solid var(--line) !important;
  padding: 6px 10px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03) !important;
}

.nav-cta .cart-nav-btn:hover {
  border-color: var(--line-strong) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.nav-cta .cart-nav-btn .cart-count {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 1.45em;
  height: 1.45em;
  margin-left: 2px;
  border: 0;
  background: transparent;
  color: #f1d7b1 !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1 !important;
  padding: 0 0.18em;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
  box-shadow: none;
}

/* Storefront cart interaction feedback */
button[data-add-to-cart],
button[data-buy-now],
.btn[data-add-to-cart],
.btn[data-buy-now] {
  cursor: pointer;
}

button[data-add-to-cart]:disabled,
button[data-buy-now]:disabled,
.btn[data-add-to-cart]:disabled,
.btn[data-buy-now]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.cart-count.is-bumped {
  animation: cart-count-bump 0.28s ease;
}

@keyframes cart-count-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  min-width: 220px;
  max-width: min(92vw, 520px);
  background: rgba(10, 10, 10, 0.96);
  color: #eee9e1;
  border: 1px solid var(--line-strong);
  padding: 11px 14px;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.35;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-toast.is-error {
  border-color: rgba(211, 82, 82, 0.85);
}


/* Date picker icon visibility */
input[type="date"],
input[type="datetime-local"] {
  color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.15);
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-nav {
    display: block;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: center;
    grid-column: 2;
  }

  .studio-hero .hero__frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .studio-hero .hero__media {
    min-height: 360px;
  }

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

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .footer-inner > div {
    text-align: center;
    justify-items: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .wrapper,
  .studio-shell,
  .nav-inner,
  .mobile-nav,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .studio-intro,
  .studio-work,
  .studio-story,
  .studio-process,
  .studio-contact,
  .studio-shop,
  .blog-hero,
  .products-page-hero,
  .product-detail,
  .checkout-page {
    padding: 64px 0;
  }

  .studio-work-grid,
  .studio-shop-grid,
  .blog-grid,
  .products-page-grid,
  .projects-grid,
  .studio-intro-grid,
  .studio-story-grid,
  .studio-contact-grid,
  .checkout-grid,
  .account-form-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .footer-inner > div:first-child {
    grid-column: auto;
  }

  .footer-inner > div {
    text-align: center;
    justify-items: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .studio-shop-toolbar,
  .products-page-filter-form,
  .blog-filter-form,
  .section-actions,
  .studio-hero .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .btn,
  .studio-btn {
    width: 100%;
  }

  .studio-hero.has-mobile-bg .hero__media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
      var(--studio-hero-media-bg-mobile, var(--studio-hero-media-bg, url('/assets/theme/img/placeholder-hero.svg'))) center/cover no-repeat;
  }

  .nav-inner .brand__mark {
    font-size: 1.45rem;
  }

  .nav-inner .brand__sub {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
}

/* Single blog post hero alignment */
.blog-post-header,
.blog-post-hero {
  text-align: center;
}

.blog-post-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-post-image {
  margin: 0 auto 1rem;
  width: min(100%, 860px);
  max-height: min(58vh, 560px);
  height: auto;
  object-fit: contain;
}

.blog-post .wysiwyg-block img,
.blog-post .builder-block img {
  display: block;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  max-height: min(56vh, 520px);
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.blog-post .wysiwyg-block h1,
.blog-post .wysiwyg-block h2,
.blog-post .wysiwyg-block h3,
.blog-post .wysiwyg-block h4,
.blog-post .wysiwyg-block h5,
.blog-post .wysiwyg-block h6,
.blog-post .builder-block h1,
.blog-post .builder-block h2,
.blog-post .builder-block h3,
.blog-post .builder-block h4,
.blog-post .builder-block h5,
.blog-post .builder-block h6 {
  color: rgb(244, 238, 230);
}

.blog-post-meta {
  display: inline-flex;
  justify-content: center;
  margin: 0 0 0.8rem;
}

.blog-post-hero h1 {
  margin: 0 auto;
}

.blog-post-excerpt {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.blog-engagement {
  clear: both;
  margin-top: 48px;
  border-top: 1px solid rgba(196, 154, 108, 0.25);
  padding-top: 28px;
}

.blog-reactions-head {
  font-family: "Inter", "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #c9a776;
  margin-bottom: 10px;
}

.blog-reaction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(196, 154, 108, 0.35);
  background: rgba(255, 255, 255, 0.02);
  color: #efe8df;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 52px;
  justify-content: center;
}

.blog-reaction-btn.is-active {
  border-color: rgba(196, 154, 108, 0.9);
  background: rgba(196, 154, 108, 0.14);
}

.reaction-emoji {
  font-size: 14px;
  line-height: 1;
}

.reaction-count {
  font-variant-numeric: tabular-nums;
}

.blog-comments h3 {
  margin: 12px 0 16px;
}

.blog-comment-form {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-comment-form label {
  margin: 0;
}

.blog-comment-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(196, 154, 108, 0.35);
  background: rgba(255, 255, 255, 0.02);
  color: #f2ece4;
  padding: 12px;
  resize: vertical;
  min-height: 96px;
}

.as-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.blog-comment-list {
  display: grid;
  gap: 12px;
}

.blog-comment-item {
  border: 1px solid rgba(196, 154, 108, 0.2);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.blog-comment-item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #d6d0c7;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-comment-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-comment-actions form {
  margin: 0;
}

.blog-comment-item p {
  margin: 0;
  color: #efe8df;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-reaction-btn {
    font-size: 11px;
    padding: 7px 10px;
  }

  .blog-comment-item header {
    flex-direction: column;
    gap: 5px;
  }
}

/* UI consistency updates */
.account-nav {
  position: relative;
}

.account-trigger.btn {
  position: relative;
  width: 40px;
  height: 40px;
  min-height: 40px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #efe8df !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.account-trigger.btn:hover {
  border-color: rgba(201, 168, 110, 0.7) !important;
  background: rgba(201, 168, 110, 0.11) !important;
  color: #fff5e8 !important;
}

.account-trigger i {
  font-size: 16px;
  line-height: 1;
  display: block;
  transform: translateY(.5px);
}

.nav-account-alert-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #c82828;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}

.account-dropdown.nav-submenu {
  min-width: 180px;
  right: 0;
  left: auto;
  top: 100% !important;
  margin-top: 0 !important;
}

.account-nav.is-open > .account-dropdown {
  display: block;
}

.section-title {
  margin-bottom: 14px;
}

.blog-filter-form select,
.blog-filter-form select option {
  color: #efe8dc !important;
  background: #121212 !important;
}

input[type="date"],
input[type="datetime-local"],
input[type="time"] {
  color-scheme: light !important;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(86%) sepia(18%) saturate(468%) hue-rotate(349deg) brightness(108%) contrast(94%) !important;
  -webkit-filter: invert(86%) sepia(18%) saturate(468%) hue-rotate(349deg) brightness(108%) contrast(94%) !important;
  opacity: 1 !important;
  cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button {
  filter: invert(86%) sepia(18%) saturate(468%) hue-rotate(349deg) brightness(108%) contrast(94%) !important;
  -webkit-filter: invert(86%) sepia(18%) saturate(468%) hue-rotate(349deg) brightness(108%) contrast(94%) !important;
}

