/* ═══ COMMISSIONS — garden dark ═══ */
#commissions {
  background: var(--garden-dark);
  padding: 7rem clamp(1.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
/* Garden glow from bottom */
#commissions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(100, 165, 80, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 15% 20%, rgba(180, 160, 80, 0.04) 0%, transparent 50%);
}
/* Dot grid */
#commissions::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(var(--gold-rgb), 0.15) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.2;
}
.comm-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.comm-header .h2 {
  color: var(--parchment);
}
.comm-header .chip {
  color: var(--gold-pale);
}
.comm-header .chip::before {
  background: var(--gold-pale);
}
.comm-header .body-copy {
  color: rgba(245, 237, 216, 0.6);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.steps::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--gold-rgb), 0.25), transparent);
}
.step {
  padding: 0 2.5rem 0 0;
}
.step-circle {
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(15, 26, 18, 0.7);
  position: relative;
}
.step-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.08);
}
.step-n {
  font-family: "Cormorant", serif;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.step-title {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 0.7rem;
}
.step-desc {
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.6);
  line-height: 1.8;
}

/* ═══ ABOUT — split ═══ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  overflow: hidden;
}
.about-visual {
  background: var(--garden-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
}
/* Garden night atmosphere */
.about-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 40% 40%, rgba(80, 130, 65, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 90%, rgba(180, 160, 80, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(50, 80, 45, 0.5) 0%, transparent 70%),
    linear-gradient(155deg, #111a11 0%, #1a2318 60%, #1a2418 100%);
}
/* Vertical mist lines */
.about-visual-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(var(--gold-rgb), 0.02) 0px,
    rgba(var(--gold-rgb), 0.02) 1px,
    transparent 1px,
    transparent 80px
  );
}
/* Logo in about panel */
.about-logo-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-circle {
  position: relative;
  width: 200px;
  height: 200px;
}
.about-logo-glow {
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.18) 0%, transparent 70%);
}
.about-logo-ring-a {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
}
.about-logo-ring-b {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
}
.about-logo-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: invert(1) sepia(0.3) saturate(0.9) brightness(0.95);
  position: relative;
  z-index: 2;
  object-fit: cover;
}
.about-caption {
  position: relative;
  z-index: 2;
}
.about-caption blockquote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--parchment);
  line-height: 1.65;
  max-width: 310px;
}
.about-caption blockquote span {
  color: var(--gold-light);
}
.about-caption cite {
  display: block;
  margin-top: 1.1rem;
  font-family: "Cormorant SC", serif;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  color: rgba(245, 237, 216, 0.3);
  font-style: normal;
}
/* About content — light for readability */
.about-content {
  background: var(--parchment);
  padding: 5.5rem clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .body-copy {
  max-width: 100%;
  margin-bottom: 1.2rem;
}
.about-rows {
  margin-top: 2.2rem;
}
.about-row {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
}
.about-row:last-child {
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
}
.about-row-bar {
  width: 1px;
  flex-shrink: 0;
}
.about-row-bar-inner {
  width: 1px;
  height: 24px;
  background: var(--gold);
  opacity: 0.5;
  margin-top: 0.2rem;
}
.about-row-text {
  font-size: 0.84rem;
  color: var(--body);
  line-height: 1.75;
}
.about-row-text strong {
  color: var(--garden-deep);
  font-weight: 400;
}

/* ═══ FRANKIE FEATURE ═══ */
#frankie-feature {
  background: var(--garden-dark);
  padding: 7rem clamp(1.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
#frankie-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(100, 165, 80, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 15% 20%, rgba(180, 160, 80, 0.04) 0%, transparent 50%);
}
.frankie-head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.frankie-head .h2 {
  color: var(--parchment);
}
.frankie-head .chip {
  color: var(--gold-pale);
}
.frankie-head .chip::before {
  background: var(--gold-pale);
}
.frankie-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.frankie-narrative {
  font-size: 0.94rem;
  line-height: 1.9;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 1.4rem;
}
.frankie-narrative:first-child::first-letter {
  font-family: "Cormorant", serif;
  font-size: 3.2rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  color: var(--gold);
}
.frankie-cta {
  margin-top: 2.2rem;
}
.frankie-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.frankie-photo-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  transition:
    transform 0.35s ease,
    border-color 0.35s;
}
.frankie-photo-grid img:hover {
  transform: scale(1.03);
  border-color: rgba(var(--gold-rgb), 0.35);
}

/* ═══ SHOP NOTICE ═══ */
.shop-notice {
  background: linear-gradient(135deg, var(--garden-dark), var(--garden-mid));
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 2px;
  padding: 2.2rem 2.8rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.shop-notice::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(var(--gold-rgb), 0.06) 0%, transparent 60%);
}
.shop-notice-text {
  position: relative;
}
.shop-notice-eyebrow {
  font-family: "Cormorant SC", serif;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.shop-notice-heading {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.shop-notice-body {
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.55);
  line-height: 1.75;
  max-width: 480px;
}
.shop-notice-btn {
  flex-shrink: 0;
  position: relative;
  font-family: "Cormorant SC", serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.shop-notice-btn:hover {
  background: rgba(var(--gold-rgb), 0.12);
  border-color: var(--gold);
  color: var(--gold-pale);
}

/* ═══ TESTIMONIAL ═══ */
#testimonial {
  background: var(--parchment);
  padding: 7rem clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-bg-mark {
  font-family: "Cormorant", serif;
  font-size: 22rem;
  line-height: 1;
  color: rgba(var(--gold-rgb), 0.055);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.testi-inner {
  position: relative;
  z-index: 1;
}
.testi-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.testi-line {
  width: 60px;
  height: 1px;
  background: rgba(var(--gold-rgb), 0.35);
}
.testi-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.testi-quote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--garden-deep);
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.testi-attr {
  font-family: "Cormorant SC", serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* ═══ CONTACT ═══ */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--garden-deep);
}
.contact-left {
  padding: 6rem clamp(1.5rem, 5vw, 5rem);
  background: var(--garden-mid);
  position: relative;
  overflow: hidden;
}
.contact-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.2), transparent);
}
.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 70%, rgba(var(--gold-rgb), 0.05) 0%, transparent 60%);
}
.contact-left .h2 {
  color: var(--parchment);
  position: relative;
  z-index: 1;
}
.contact-left .chip {
  color: var(--gold-pale);
  position: relative;
  z-index: 1;
}
.contact-left .chip::before {
  background: var(--gold-pale);
}
.contact-script {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.9rem;
  color: var(--gold);
  line-height: 1;
  margin: 1.2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.contact-body {
  font-size: 0.9rem;
  color: rgba(245, 237, 216, 0.58);
  line-height: 1.9;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.cdetails {
  position: relative;
  z-index: 1;
}
.cdetail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.12);
}
.cdetail:last-child {
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.12);
}
.cdetail-bar {
  width: 1px;
  height: 28px;
  background: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.cdetail-label {
  font-family: "Cormorant SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-pale);
  margin-bottom: 0.2rem;
}
.cdetail-val {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.68);
  overflow-wrap: break-word;
  word-break: break-word;
}
/* Contact right — slightly lighter than void for readability */
.contact-right {
  padding: 6rem clamp(1.5rem, 5vw, 5rem);
  background: var(--garden-dark);
}
.form-heading {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--parchment);
  margin-bottom: 2.5rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label {
  font-family: "Cormorant SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 1px;
  padding: 0.85rem 1rem;
  color: var(--parchment);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 237, 216, 0.22);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.field select {
  color: rgba(245, 237, 216, 0.55);
  cursor: pointer;
}
.field select option {
  background: var(--garden-deep);
  color: var(--parchment);
}
.field textarea {
  height: 115px;
  resize: vertical;
}
.form-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1.1rem;
  width: 100%;
  cursor: pointer;
  font-family: "Cormorant SC", serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s;
  margin-top: 0.5rem;
}
.form-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.3);
}

/* ═══ FOOTER ═══ */
footer {
  background: #070d08;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  filter: invert(1) sepia(0.3) saturate(0.9) brightness(0.9);
  object-fit: cover;
  opacity: 0.8;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand-top {
  font-family: "Cormorant SC", serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 300;
}
.footer-brand-main {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(245, 237, 216, 0.7);
  font-weight: 300;
}
.footer-copy {
  font-size: 0.74rem;
  color: rgba(245, 237, 216, 0.7);
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-family: "Cormorant SC", serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(245, 237, 216, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--gold-light);
}

/* ═══ PET PORTRAIT COMMISSION FORM ═══ */
.pform-wrap {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  padding-top: 3rem;
}

/* Collapsible form */
.pform-collapse {
  display: none;
}
.pform-collapse.open {
  display: block;
}
.pform-toggle-wrap {
  text-align: center;
}
.pform-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: transparent;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  color: var(--gold-light);
  cursor: pointer;
  font-family: "Cormorant SC", serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  padding: 1rem 2.4rem;
  border-radius: 1px;
  transition: background 0.25s, border-color 0.25s;
}
.pform-toggle-btn:hover {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: var(--gold);
}
.pform-toggle-btn .icon {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.pform-toggle-btn.open .icon {
  transform: rotate(45deg);
}
.pform-heading {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--parchment);
  margin-bottom: 1.4rem;
}
.pform-sub {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.pform {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.pform-section-title {
  font-family: "Cormorant SC", serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-weight: 400;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pform-section-title .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 50%;
  font-size: 0.55rem;
  color: var(--gold-light);
  flex-shrink: 0;
  font-family: "Cormorant", serif;
}
.pform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pform-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pform-field.full {
  grid-column: 1/-1;
}
.pform-field label {
  font-family: "Cormorant SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}
.pform-field input,
.pform-field select,
.pform-field textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 1px;
  padding: 0.85rem 1rem;
  color: var(--parchment);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  -webkit-appearance: none;
}
.pform-field input::placeholder,
.pform-field textarea::placeholder {
  color: rgba(245, 237, 216, 0.22);
}
.pform-field input:focus,
.pform-field select:focus,
.pform-field textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.pform-field select {
  color: rgba(245, 237, 216, 0.55);
  cursor: pointer;
}
.pform-field select option {
  background: var(--garden-deep);
  color: var(--parchment);
}
.pform-field textarea {
  height: 100px;
  resize: vertical;
}

/* Custom checkbox */
.pform-check-item,
.pform-ack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.85);
  cursor: pointer;
  line-height: 1.5;
}
.pform-check-item input[type="checkbox"],
.pform-ack-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pform-check-item .cb-mark,
.pform-ack-item .cb-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 2px;
}
.pform-check-item input[type="checkbox"]:checked + .cb-mark,
.pform-ack-item input[type="checkbox"]:checked + .cb-mark {
  background: var(--gold-light);
}
.pform-check-item input[type="checkbox"]:checked + .cb-mark::after,
.pform-ack-item input[type="checkbox"]:checked + .cb-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border: solid var(--garden-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 2px;
}

/* Custom radio */
.pform-radios {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.pform-radio-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.85);
  cursor: pointer;
}
.pform-radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pform-radio-item .rb-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.pform-radio-item input[type="radio"]:checked + .rb-mark {
  background: var(--gold-light);
}
.pform-radio-item input[type="radio"]:checked + .rb-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--garden-deep);
}

/* Photo upload */
.pform-photo-area {
  border: 1px dashed rgba(var(--gold-rgb), 0.25);
  padding: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s;
  border-radius: 1px;
}
.pform-photo-area:hover {
  border-color: rgba(var(--gold-rgb), 0.45);
  background: rgba(255, 255, 255, 0.04);
}
.pform-photo-area.dragover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}
.pform-photo-area input {
  display: none;
}
.pform-photo-label {
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.7;
}
.pform-photo-label strong {
  color: var(--gold-light);
  font-weight: 400;
}
.pform-photo-previews {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pform-photo-preview {
  width: 64px;
  height: 64px;
  border-radius: 1px;
  object-fit: cover;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
}
.pform-photo-count {
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.65);
  margin-top: 0.5rem;
}

/* Upload progress */
.pform-progress {
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 1px;
  margin-top: 0.5rem;
}
.pform-progress.active {
  display: flex;
}
.pform-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(var(--gold-rgb), 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.pform-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}
.pform-progress-text {
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.75);
  white-space: nowrap;
}

/* Thank you message */
.pform-thanks {
  display: none;
}
.pform-thanks.active {
  display: block;
}
.pform-thanks-inner {
  text-align: center;
  padding: 3rem 1rem;
}
.pform-thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}
.pform-thanks h3 {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--parchment);
  margin-bottom: 0.8rem;
}
.pform-thanks p {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Acknowledgement section */
.pform-acks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Submit row */
.pform-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}
.pform-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1.1rem 2.6rem;
  cursor: pointer;
  font-family: "Cormorant SC", serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  border-radius: 1px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pform-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.3);
}
.pform-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.pform-btn-note {
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .pform-row {
    grid-template-columns: 1fr;
  }
  .pform-checklist {
    grid-template-columns: 1fr;
  }
  .pform-radios {
    flex-direction: column;
    gap: 0.6rem;
  }
  .pform-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .pform-btn {
    width: 100%;
    text-align: center;
  }
  .pform-photo-previews {
    justify-content: center;
  }
}

/* ═══ REFUND MODAL ═══ */
.rmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.rmodal.open {
  display: flex;
}
.rmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 10, 0.82);
  backdrop-filter: blur(6px);
}
.rmodal-box {
  position: relative;
  z-index: 1;
  background: var(--garden-mid);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.rmodal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  background: none;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold-light);
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.rmodal-close:hover {
  background: rgba(var(--gold-rgb), 0.15);
}
.rmodal-inner {
  padding: 2rem 2.5rem 2.5rem;
}
.rmodal-title {
  font-family: "Cormorant", serif;
  font-size: 1.8rem;
  color: var(--parchment);
  font-weight: 300;
  margin: 0.6rem 0 0.4rem;
}
.rmodal-meta {
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.45);
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.rmodal-inner h3 {
  font-family: "Cormorant SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin: 1.6rem 0 0.5rem;
  font-weight: 400;
}
.rmodal-inner p {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.rmodal-inner ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}
.rmodal-inner ul li {
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.rmodal-inner a {
  color: var(--gold-light);
}
.rmodal-updated {
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.35);
  margin-top: 2rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.12);
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .rmodal-inner {
    padding: 1.5rem;
  }
  .rmodal-title {
    font-size: 1.4rem;
  }
}

/* Responsive — commissions, about, contact, footer, shop-notice, frankie, testimonial */
@media (max-width: 768px) {
  /* COMMISSIONS */
  .comm-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .steps::before {
    display: none;
  }
  .step {
    padding: 0;
  }

  /* ABOUT */
  #about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 300px;
  }
  .about-content {
    padding: 3.5rem clamp(1.5rem, 5vw, 5rem);
  }
  .about-logo-area {
    display: none;
  }

  /* SHOP NOTICE */
  .shop-notice {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem;
  }
  .shop-notice-btn {
    width: 100%;
    text-align: center;
  }

  /* FRANKIE */
  .frankie-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .frankie-narrative:first-child::first-letter {
    font-size: 2.5rem;
  }

  /* CONTACT */
  #contact {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 4rem clamp(1.5rem, 5vw, 5rem) 3rem;
  }
  .contact-right {
    padding: 3rem clamp(1.5rem, 5vw, 5rem) 4rem;
  }
  .frow {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .strip-stats {
    gap: 1.5rem;
  }
}
