/*
 * bespoke.css — Page-specific styles for the LKB Bespoke Jewellery page.
 *
 * All rules scoped under .page-bespoke — nothing bleeds into other pages.
 * Zero new variables — every value uses tokens already defined in style.css :root {}.
 */

/* ==================== NAV ACTIVE STATE ==================== */
.page-bespoke .nav-link.active {
  color: var(--accent);
}
.page-bespoke .nav-link.active::after {
  width: 100%;
}

/* ==================== HERO ==================== */
.page-bespoke .bespoke-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-bespoke .bespoke-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-bespoke .bespoke-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-bespoke .bespoke-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.8) 0%,
    rgba(153,88,56,0.21) 50%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 2;
}

.page-bespoke .bespoke-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.page-bespoke .bespoke-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.page-bespoke .bespoke-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.page-bespoke .bespoke-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

.page-bespoke .bespoke-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.page-bespoke .bespoke-hero-scroll span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ==================== INTRO STRIP ==================== */
.page-bespoke .bespoke-intro-strip {
  background: var(--black);
  padding: 1.5rem 5%;
  overflow: hidden;
}

.page-bespoke .bespoke-intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.page-bespoke .intro-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
}

.page-bespoke .intro-strip-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.page-bespoke .intro-strip-dot {
  color: var(--accent);
  font-size: 0.45rem;
  opacity: 0.5;
}

/* ==================== CATEGORIES ==================== */
.page-bespoke .bespoke-categories {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-bespoke .bespoke-categories-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-bespoke .bespoke-categories-intro {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.page-bespoke .categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

/* Standard category card */
.page-bespoke .category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
}

.page-bespoke .category-card:hover {
  box-shadow: 0 16px 48px rgba(153,88,56,0.18);
  transform: translateY(-4px);
}

.page-bespoke .category-card-img {
  position: relative;
  overflow: hidden;
}

.page-bespoke .category-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.page-bespoke .category-card:hover .category-card-img img {
  transform: scale(1.06);
}

.page-bespoke .category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(153,88,56,0.25) 0%, transparent 60%);
  transition: var(--transition);
}

.page-bespoke .category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(153,88,56,0.45) 0%, transparent 70%);
}

.page-bespoke .category-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-bespoke .category-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,169,98,0.1);
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.875rem;
  align-self: flex-start;
}

.page-bespoke .category-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.page-bespoke .category-card-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Dark "custom" card */
.page-bespoke .category-card-dark {
  background: var(--primary);
  box-shadow: none;
  min-height: 340px;
}

.page-bespoke .category-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(153,88,56,0.4);
}

.page-bespoke .category-card-dark-inner {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.page-bespoke .category-card-dark .section-tag {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.page-bespoke .category-card-dark h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.page-bespoke .category-card-dark p {
  font-size: 0.875rem;
  color: rgba(247,237,214,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ==================== TRANSFORMATIONS (BEFORE/AFTER) ==================== */
.page-bespoke .bespoke-transformations {
  padding: 8rem 5%;
  background: var(--primary);
}

.page-bespoke .bespoke-transformations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-bespoke .bespoke-transformations .section-title {
  color: var(--secondary);
}

.page-bespoke .bespoke-transformations .section-tag {
  color: var(--accent-light);
}

.page-bespoke .transformations-intro {
  font-size: 0.95rem;
  color: rgba(247,237,214,0.65);
  line-height: 1.8;
}

.page-bespoke .transformations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.page-bespoke .transformation-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Re-use existing .slider-container pattern from style.css */
.page-bespoke .slider-container {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 4/3;
}

.page-bespoke .slider-image {
  position: absolute;
  inset: 0;
}

.page-bespoke .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-bespoke .slider-image.before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.page-bespoke .slider-label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  padding: 0.3rem 0.75rem;
}

.page-bespoke .before-label { left: 1rem; }
.page-bespoke .after-label  { right: 1rem; }

.page-bespoke .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.page-bespoke .handle-line {
  flex: 1;
  width: 2px;
  background: var(--accent);
}

.page-bespoke .handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.page-bespoke .transformation-caption {
  font-size: 0.85rem;
  color: rgba(247,237,214,0.6);
  line-height: 1.6;
  text-align: center;
}

.page-bespoke .transformation-caption strong {
  color: var(--accent);
  font-weight: 500;
}

/* ==================== MATERIALS SECTION ==================== */
.page-bespoke .bespoke-materials {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-bespoke .bespoke-materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.page-bespoke .materials-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.page-bespoke .materials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-bespoke .material-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  transition: var(--transition);
}

.page-bespoke .material-tag span {
  color: var(--accent);
  font-size: 0.5rem;
}

.page-bespoke .material-tag:hover {
  border-color: var(--accent);
  color: var(--primary);
  background: rgba(201,169,98,0.06);
}

/* Image stack */
.page-bespoke .materials-image-stack {
  position: relative;
}

.page-bespoke .materials-img-main {
  position: relative;
  z-index: 2;
  box-shadow: 12px 12px 0 rgba(153,88,56,0.12), 0 20px 50px rgba(0,0,0,0.15);
}

.page-bespoke .materials-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.page-bespoke .materials-img-secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  z-index: 3;
  border: 4px solid var(--secondary);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.page-bespoke .materials-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-bespoke .materials-cert-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 4;
  background: var(--primary);
  color: var(--secondary);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(153,88,56,0.4);
  min-width: 110px;
}

.page-bespoke .materials-cert-badge svg {
  color: var(--accent);
}

.page-bespoke .materials-cert-badge span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
}

/* ==================== PROCESS SECTION ==================== */
.page-bespoke .bespoke-process {
  position: relative;
  padding: 9rem 5%;
  overflow: hidden;
}

.page-bespoke .bespoke-process-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-bespoke .bespoke-process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-bespoke .bespoke-process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 2;
}

.page-bespoke .bespoke-process-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.page-bespoke .bespoke-process-header {
  max-width: 580px;
  margin-bottom: 5rem;
}

.page-bespoke .bespoke-process-header .section-tag {
  color: var(--accent);
}

.page-bespoke .section-title.light {
  color: var(--secondary);
}

.page-bespoke .process-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* Steps — horizontal row */
.page-bespoke .bespoke-process-steps {
  display: flex;
  align-items: flex-start;
  /* Each step owns its stroke, so the gutter is a real gap rather than spacer
     columns. Column width is unchanged: (W - 4 * 48) / 5. */
  gap: 48px;
  margin-bottom: 4rem;
}

.page-bespoke .bespoke-step {
  flex: 1;
  min-width: 0;
}

/* Stroke and number ride on one line whose left edge is the step's left edge —
   the same edge as the heading and the paragraph underneath. */
.page-bespoke .bespoke-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.page-bespoke .bespoke-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.page-bespoke .bespoke-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.page-bespoke .bespoke-step-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

.page-bespoke .bespoke-step-body strong {
  color: var(--accent-light);
  font-weight: 500;
}

.page-bespoke .bespoke-connector {
  flex-shrink: 0;
  width: 36px;
}

.page-bespoke .bespoke-connector-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(201,169,98,0.15));
}

/* Process disclaimer */
.page-bespoke .bespoke-process-note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(201,169,98,0.07);
  border-left: 2px solid var(--accent);
}

.page-bespoke .bespoke-process-note svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.page-bespoke .bespoke-process-note span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.page-bespoke .bespoke-process-note a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,98,0.35);
  transition: var(--transition);
}

.page-bespoke .bespoke-process-note a:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

/* ==================== GALLERY ==================== */
.page-bespoke .bespoke-gallery {
  padding: 8rem 5%;
  background: var(--gray-100);
}

.page-bespoke .bespoke-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-bespoke .gallery-intro {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* Masonry-style fixed grid */
.page-bespoke .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-bottom: 3rem;
}

.page-bespoke .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}

.page-bespoke .gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.page-bespoke .gallery-item--tall img {
  height: 380px;
}

.page-bespoke .gallery-item:hover img {
  transform: scale(1.06);
}

.page-bespoke .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.page-bespoke .gallery-piece-type {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.25rem;
}

.page-bespoke .gallery-piece-detail {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.page-bespoke .gallery-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-bespoke .gallery-cta p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ==================== TESTIMONIALS ==================== */
.page-bespoke .bespoke-testimonials {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-bespoke .bespoke-testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.page-bespoke .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.page-bespoke .testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-bespoke .testimonial-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 12px 40px rgba(153,88,56,0.12);
  transform: translateY(-3px);
}

.page-bespoke .testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.page-bespoke .testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.65;
  flex: 1;
}

.page-bespoke .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.page-bespoke .testimonial-initials {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.page-bespoke .testimonial-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.05em;
}

.page-bespoke .testimonial-piece {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ==================== ENQUIRY FORM SECTION ==================== */
.page-bespoke .bespoke-enquiry {
  padding: 8rem 5%;
  background: var(--primary);
}

.page-bespoke .bespoke-enquiry-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 7rem;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left info panel */
.page-bespoke .enquiry-info .section-tag {
  color: var(--accent-light);
}

.page-bespoke .enquiry-info .section-title {
  color: var(--secondary);
}

.page-bespoke .enquiry-info-text {
  font-size: 0.95rem;
  color: rgba(247,237,214,0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.page-bespoke .enquiry-promises {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.page-bespoke .enquiry-promise {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.85rem;
  color: rgba(247,237,214,0.75);
}

.page-bespoke .enquiry-promise svg {
  color: var(--accent);
  flex-shrink: 0;
}

.page-bespoke .enquiry-contact-alt {
  padding-top: 2rem;
  border-top: 1px solid rgba(247,237,214,0.1);
}

.page-bespoke .enquiry-contact-alt p {
  font-size: 0.8rem;
  color: rgba(247,237,214,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

/* Reuse .btn-whatsapp from style.css */

/* Right form */
.page-bespoke .enquiry-form-wrap {
  background: var(--secondary);
  padding: 3.5rem;
}

.page-bespoke .enquiry-form {
  display: flex;
  flex-direction: column;
}

.page-bespoke .enquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.page-bespoke .enquiry-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.page-bespoke .enquiry-form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
}

.page-bespoke .req {
  color: var(--accent);
  margin-left: 2px;
}

.page-bespoke .enquiry-form-group input,
.page-bespoke .enquiry-form-group select,
.page-bespoke .enquiry-form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.page-bespoke .enquiry-form-group input:focus,
.page-bespoke .enquiry-form-group select:focus,
.page-bespoke .enquiry-form-group textarea:focus {
  border-color: var(--accent);
  background: var(--gray-50);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

.page-bespoke .enquiry-form-group input::placeholder,
.page-bespoke .enquiry-form-group textarea::placeholder {
  color: var(--gray-400);
}

.page-bespoke .enquiry-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--white);
  padding-right: 3rem;
}

.page-bespoke .enquiry-form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* Consent checkbox */
.page-bespoke .enquiry-consent {
  margin-bottom: 1.75rem;
}

.page-bespoke .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.page-bespoke .checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.page-bespoke .checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.page-bespoke .checkbox-label input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.page-bespoke .checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* Success state */
.page-bespoke .enquiry-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.page-bespoke .enquiry-success.visible {
  display: block;
}

.page-bespoke .success-diamond {
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.page-bespoke .enquiry-success h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-bespoke .enquiry-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .page-bespoke .bespoke-enquiry-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .page-bespoke .enquiry-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }

  .page-bespoke .enquiry-form-wrap {
    padding: 2.5rem;
  }

  .page-bespoke .bespoke-materials-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .page-bespoke .materials-image-stack {
    max-width: 520px;
    margin: 0 auto;
  }

  .page-bespoke .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-bespoke .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .page-bespoke .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-bespoke .category-card-dark {
    grid-column: span 2;
  }

  .page-bespoke .bespoke-process-steps {
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Stacked layout has no gutter to hang the stroke in, so it returns to flow
     above the number — still flush with the number, heading and copy. */
  .page-bespoke .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .page-bespoke .gallery-item--tall {
    grid-row: span 1;
  }

  .page-bespoke .gallery-item--tall img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .page-bespoke .bespoke-hero {
    height: 90vh;
  }

  .page-bespoke .bespoke-categories,
  .page-bespoke .bespoke-transformations,
  .page-bespoke .bespoke-materials,
  .page-bespoke .bespoke-gallery,
  .page-bespoke .bespoke-testimonials,
  .page-bespoke .bespoke-enquiry {
    padding: 5rem 5%;
  }

  .page-bespoke .bespoke-process {
    padding: 5rem 5%;
  }

  .page-bespoke .categories-grid {
    grid-template-columns: 1fr;
  }

  .page-bespoke .category-card-dark {
    grid-column: span 1;
  }

  .page-bespoke .transformations-grid {
    grid-template-columns: 1fr;
  }

  .page-bespoke .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .page-bespoke .gallery-item img,
  .page-bespoke .gallery-item--tall img {
    height: 260px;
  }

  .page-bespoke .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-bespoke .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

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

  .page-bespoke .enquiry-promises {
    grid-template-columns: 1fr;
  }

  .page-bespoke .enquiry-form-wrap {
    padding: 2rem 1.5rem;
  }

  .page-bespoke .materials-img-secondary {
    left: -16px;
    bottom: -24px;
    width: 150px;
  }

  .page-bespoke .materials-img-secondary img {
    height: 160px;
  }

  .page-bespoke .materials-cert-badge {
    top: -12px;
    right: -12px;
  }

  .page-bespoke .intro-strip-dot {
    display: none;
  }

  .page-bespoke .bespoke-intro-strip-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-bespoke .bespoke-hero-title {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .page-bespoke .bespoke-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-bespoke .materials-img-secondary {
    display: none;
  }
}
