/* ============ TOKENS ============ */
:root {
  --bg: #e3dccb;
  --bg-deep: #dad1b9;
  --surface: #f8f4e9;
  --ink: #22291f;
  --ink-soft: #52594a;
  --rose: #b0495b;
  --rose-soft: #e7c6c9;
  --ochre: #c6862a;
  --ochre-soft: #efd9ae;
  --moss: #4b6b4c;
  --moss-soft: #cbdac6;
  --line: rgba(34, 41, 31, 0.16);
  --header-bg: rgba(227, 220, 204, 0.92);
  --display: "Fraunces", serif;
  --body: "Work Sans", sans-serif;
  --mono: "Space Mono", monospace;
  --radius: 3px;
  /* fixed anchors: used only by sections designed to stay dark regardless of theme (footer, process band) */
  --ink-fixed: #22291f;
  --bg-fixed: #e3dccb;
  --status-good-text: #2c4a2e;
  --status-warn-text: #6b4a15;
}

/* ============ DARK THEME ============ */
[data-theme="dark"] {
  --bg: #1b211a;
  --bg-deep: #141813;
  --surface: #262f24;
  --ink: #ece6d6;
  --ink-soft: #afaa94;
  --rose: #e08096;
  --rose-soft: #4a2a30;
  --ochre: #e3ac5c;
  --ochre-soft: #4a3a1e;
  --moss: #8fbb8e;
  --moss-soft: #2a3b2a;
  --line: rgba(236, 230, 214, 0.14);
  --header-bg: rgba(27, 33, 26, 0.88);
  --status-good-text: #d9ebd6;
  --status-warn-text: #f7e4be;
}

body,
header,
.btn,
.gallery-card,
.hook-card,
.commission-card,
.form-wrap,
input,
select,
textarea,
.filter-btn,
.theme-toggle,
.lightbox-inner,
.about-photo,
.journal-card,
.testi-dot {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .nav-right .btn {
    display: none;
  }
  .nav-right {
    gap: 12px;
  }
}
::selection {
  background: var(--ochre-soft);
}
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ SIGNATURE: chain-stitch divider ============ */
.chain-divider {
  height: 22px;
  width: 100%;
  background-image:
    radial-gradient(
      circle 6px at 12px 6px,
      transparent 3.2px,
      currentColor 3.2px,
      currentColor 4.6px,
      transparent 4.6px
    ),
    radial-gradient(
      circle 6px at 24px 16px,
      transparent 3.2px,
      currentColor 3.2px,
      currentColor 4.6px,
      transparent 4.6px
    );
  background-size: 36px 22px;
  background-repeat: repeat-x;
  color: var(--ink);
  opacity: 0.28;
}
.chain-divider.on-dark {
  color: var(--bg-fixed);
  opacity: 0.35;
}
.chain-divider.tight {
  margin: 0 0 4px;
}

/* ============ SIGNATURE: granny-square mark ============ */
.granny-mark {
  width: 30px;
  height: 30px;
  position: relative;
  flex-shrink: 0;
}
.granny-mark span {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1.6px solid currentColor;
  opacity: 0.9;
}
.granny-mark span:nth-child(1) {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  color: var(--rose);
}
.granny-mark span:nth-child(2) {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  color: var(--ochre);
}
.granny-mark span:nth-child(3) {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  color: var(--moss);
}

/* ============ NAV ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.3px solid var(--ink);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}
.theme-toggle:hover {
  background: var(--ink);
}
.theme-toggle:hover svg {
  stroke: var(--bg);
}
html[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}
html[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.fav-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.fav-count svg {
  width: 16px;
  height: 16px;
}
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  display: inline-block;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 var(--rose);
}
.btn-outline {
  border: 1.4px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 14px 20px;
  }
  .nav-right {
    gap: 10px;
  }
  .fav-count {
    display: none;
  }
  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }
  .nav-links {
    /* position: fixed;
    inset: 61px 0 0 0;
    background: var(--bg);
    flex-direction: column; */

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;

    background: var(--bg);
    flex-direction: column;
    padding: 40px 28px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }
  .nav-links a {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .cta-full {
    display: none;
  }
  .logo {
    font-size: 19px;
    gap: 8px;
  }
  .logo-img {
    height: 32px;
  }
  .granny-mark {
    width: 24px;
    height: 24px;
  }
  .granny-mark span:nth-child(1) {
    width: 24px;
    height: 24px;
  }
  .granny-mark span:nth-child(2) {
    width: 16px;
    height: 16px;
  }
  .granny-mark span:nth-child(3) {
    width: 8px;
    height: 8px;
  }
  .theme-toggle {
    width: 34px;
    height: 34px;
  }
  .theme-toggle svg {
    width: 15px;
    height: 15px;
  }
  .nav-cta {
    padding: 8px 12px;
  }
}
@media (max-width: 360px) {
  .logo-text {
    display: none;
  }
}

/* ============ HERO ============ */
.hero {
  padding: 90px 0 60px;
}
@media (max-width: 700px) {
  .hero {
    padding: 48px 0 36px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  margin: 18px 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}
.hero-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  padding: 10px 0;
}
.hero-bigword {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(56px, 10.5vw, 148px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--rose);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  text-align: center;
}
.hero-photo {
  position: relative;
  z-index: 2;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: translateX(-20%) translateY(5.5%);
  filter: drop-shadow(0 24px 32px rgba(34, 41, 31, 0.28));
}

.show-on-mobile { 
  display: none; 
}

@media (max-width: 900px) {
  .hero-portrait {
    min-height: 340px;
  }
  /* .hero-photo {
    max-width: 58%;
  } */
  .hero-photo { 
    transform: translateY(5%); 
    max-width: 80%; 
    margin: 0 auto; 
  }
  .hero-bigword { 
    font-size: clamp(48px, 14vw, 90px); 
    white-space: nowrap; 
  }
  
  .hide-on-mobile { 
    display: none !important; 
  }
  
  .show-on-mobile { 
    display: block; 
  }
  
  .hero-portrait {
    min-height: auto; /* Removes the tall empty space left by the big word */
    padding: 0;
  }
  
  .mobile-hero-wrap {
    border: 2px solid var(--ink);
    box-shadow: 12px 12px 0 0 var(--rose);
    margin: 20px auto 40px;
    max-width: 85%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
  }
  
  .mobile-hero-photo {
    width: 100%;
    height: auto;
    display: block;
  }
}
.wip-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 6px 6px 0 0 var(--rose);
  font-family: var(--mono);
  font-size: 12.5px;
  max-width: 200px;
  z-index: 5;
}
.wip-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  display: inline-block;
  margin-right: 6px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.intro-badge {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 220px;
  font-style: italic;
  color: var(--ink-soft);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 90px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
/* .stat {} */
.stat .num {
  font-family: var(--display);
  font-size: 34px;
  color: var(--rose);
}
.stat .label {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .wip-badge {
    display: none;
  }
  .hero-ctas {
    justify-content: center;
  }
  .stat {
    text-align: center;
  }
}

/* ============ SECTION SHARED ============ */
section {
  padding: 100px 0;
}
@media (max-width: 700px) {
  section {
    padding: 64px 0;
  }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-top: 14px;
}
.section-head p {
  color: var(--ink-soft);
  max-width: 420px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ CURRENTLY ON THE HOOK ============ */
.hook-band {
  background: var(--bg-deep);
}
.hook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hook-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
}
.hook-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss);
}
.hook-card h3 {
  font-size: 21px;
  margin: 10px 0 6px;
}
.hook-card .meta {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.progress-track {
  height: 8px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--rose);
  width: 0%;
  border-radius: 8px;
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hook-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ GALLERY ============ */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 9px 16px;
  border-radius: 20px;
  border: 1.3px solid var(--ink);
  color: var(--ink);
  transition: all 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
}
.gallery-thumb {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.gallery-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.18) 0 2px,
    transparent 2px 14px
  );
}
.gallery-card .pill {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  background: rgba(248, 244, 233, 0.92);
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.gallery-card .heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(248, 244, 233, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.gallery-card .heart:hover {
  transform: scale(1.12);
}
.gallery-card .heart svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
}
.gallery-card .heart.saved svg {
  fill: var(--rose);
  stroke: var(--rose);
}
.gallery-info {
  padding: 16px 16px 18px;
}
.gallery-info h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.gallery-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.gallery-info .price {
  font-family: var(--mono);
  font-size: 13px;
}
.status {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
}
.status.available {
  background: var(--moss-soft);
  color: var(--status-good-text);
}
.status.sold {
  background: var(--line);
  color: var(--ink-soft);
}
.status.made {
  background: var(--ochre-soft);
  color: var(--status-warn-text);
}

.gallery-grid.hidden-item {
  display: none;
}
.gallery-card.hide {
  display: none;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-info {
    padding: 12px 12px 14px;
  }
  .gallery-info h4 {
    font-size: 15px;
  }
  .status {
    font-size: 9.5px;
    padding: 3px 7px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(34, 41, 31, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  background: var(--surface);
  max-width: 760px;
  width: 100%;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-height: 86vh;
}
.lightbox-media {
  position: relative;
  min-height: 280px;
}
.lightbox-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.18) 0 2px,
    transparent 2px 14px
  );
}
.lightbox-body {
  padding: 34px;
  overflow-y: auto;
}
.lightbox-body .pill {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lightbox-body h3 {
  font-size: 26px;
  margin: 12px 0 10px;
}
.lightbox-body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.spec-list {
  margin-bottom: 22px;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.spec-list li span:first-child {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 700px) {
  .lightbox-inner {
    grid-template-columns: 1fr;
  }
  .lightbox-media {
    min-height: 180px;
  }
}

/* ============ PROCESS ============ */
.process-band {
  background: var(--ink-fixed);
  color: var(--bg-fixed);
}
.process-band .eyebrow {
  color: rgba(227, 220, 204, 0.7);
}
.process-band .eyebrow::before {
  background: var(--ochre);
}
.process-band .section-head p {
  color: rgba(227, 220, 204, 0.65);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(227, 220, 204, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  background: var(--ink-fixed);
  padding: 34px 26px;
}
.process-step .step-no {
  font-family: var(--display);
  font-size: 15px;
  color: var(--rose);
  opacity: 0.9;
}
.process-step h3 {
  font-size: 20px;
  margin: 14px 0 10px;
  color: var(--bg-fixed);
  font-weight: 500;
}
.process-step p {
  font-size: 13.8px;
  color: rgba(227, 220, 204, 0.68);
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ochre) 0%, var(--rose) 100%);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(
    circle at 12px 12px,
    rgba(255, 255, 255, 0.3) 0px,
    rgba(255, 255, 255, 0.3) 2px,
    transparent 2px,
    transparent 16px
  );
}
.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 16px;
}
blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  border-left: 3px solid var(--rose);
  padding-left: 20px;
  margin: 26px 0;
}
.signature-line {
  font-family: var(--display);
  font-size: 19px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ TESTIMONIALS ============ */
.testi-band {
  background: var(--bg-deep);
}
.testi-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testi-slide {
  display: none;
}
.testi-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.testi-slide p.quote {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  margin-bottom: 22px;
}
.testi-slide .who {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.testi-dot.active {
  background: var(--rose);
}
.testi-arrow {
  position: absolute;
  top: 36%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-arrow.left {
  left: -10px;
}
.testi-arrow.right {
  right: -10px;
}
@media (max-width: 700px) {
  .testi-arrow {
    display: none;
  }
}

/* ============ SHOP / COMMISSIONS ============ */
.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}
.commission-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.commission-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--rose);
}
.commission-card h3 {
  font-size: 22px;
  margin: 12px 0 8px;
}
.commission-card .price {
  font-family: var(--mono);
  font-size: 20px;
  margin-bottom: 14px;
}
.commission-card ul li {
  font-size: 13.8px;
  color: var(--ink-soft);
  padding: 5px 0;
  position: relative;
  padding-left: 16px;
}
.commission-card ul li::before {
  content: "◆";
  font-size: 7px;
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--ochre);
}
@media (max-width: 900px) {
  .commission-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-family: var(--display);
  font-size: 18px;
}
.faq-q .plus {
  font-family: var(--body);
  font-size: 22px;
  transition: transform 0.25s ease;
  color: var(--rose);
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 600px;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  margin-top: 70px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
input,
select,
textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.3px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.form-msg {
  font-family: var(--mono);
  font-size: 13px;
  margin-top: 14px;
  color: var(--moss);
  display: none;
}
.form-msg.show {
  display: block;
}
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    padding: 26px;
  }
}

/* ============ JOURNAL ============ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journal-card {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.journal-card .date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
}
.journal-card h3 {
  font-size: 20px;
  margin: 10px 0 8px;
}
.journal-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.journal-card a {
  font-family: var(--mono);
  font-size: 12.5px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FOLLOW / INSTAGRAM STRIP ============ */
.follow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.insta-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.18) 0 2px,
    transparent 2px 12px
  );
}
@media (max-width: 700px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ NEWSLETTER + FOOTER ============ */
footer {
  background: var(--ink-fixed);
  color: var(--bg-fixed);
  padding-top: 80px;
}
.newsletter {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.newsletter h2 {
  color: var(--bg-fixed);
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 14px 0 12px;
}
.newsletter p {
  color: rgba(227, 220, 204, 0.65);
  margin-bottom: 26px;
  font-size: 15px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  background: rgba(227, 220, 204, 0.08);
  border: 1.3px solid rgba(227, 220, 204, 0.3);
  color: var(--bg-fixed);
}
.newsletter-form input::placeholder {
  color: rgba(227, 220, 204, 0.5);
}
.newsletter-form .btn-primary {
  background: var(--rose);
  color: var(--bg-fixed);
  white-space: nowrap;
}
.footer-msg {
  font-family: var(--mono);
  font-size: 12.5px;
  margin-top: 14px;
  color: var(--ochre-soft);
  display: none;
}
.footer-msg.show {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 0 50px;
  border-top: 1px solid rgba(227, 220, 204, 0.14);
  padding-top: 50px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: rgba(227, 220, 204, 0.55);
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(227, 220, 204, 0.85);
  margin-bottom: 10px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(227, 220, 204, 0.14);
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(227, 220, 204, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
}
@media (min-width: 600px) and (max-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }
  
  /* Erases the structural wrappers so children become direct grid items */
  .hero > .container {
    display: contents;
  }
  
  /* Forces the text block to span the full width at the top */
  .hero-grid > div:first-child {
    grid-column: 1 / -1;
  }
  
  /* Assigns the photo to the left column */
  .hero-visual {
    grid-column: 1 / 2;
  }
  
  /* Assigns the stats to the right column & removes top border */
  .stats-bar {
    grid-column: 2 / 3;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  
  /* Constrains the image to the 50% grid column */
  .mobile-hero-wrap {
    max-width: 100%;
    margin: 0;
  }
}