/* ==========================================
   Sign Painter Website - Main Stylesheet
   Navy Blue / Gold Refined Design System
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Josefin+Sans:wght@200;300;400&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Navy */
  --navy-darkest: #050d1a;
  --navy-deep: #0a1628;
  --navy-mid: #0f2040;
  --navy-base: #1a3260;
  --navy-light: #1e3d72;
  --navy-muted: #2a4d8a;
  /* Gold */
  --gold-deep: #8b6914;
  --gold-mid: #c49a2a;
  --gold: #d4a843;
  --gold-light: #e8c06a;
  --gold-pale: #f5dfa0;
  /* Ivory (白寄り) */
  --ivory: #f8f5ee;
  --ivory-warm: #f2ede2;
  --ivory-soft: #ebe4d5;
  /* Brown */
  --brown-deep: #2c1a0e;
  --brown-mid: #5c3d20;
  --brown: #7a5230;
  --brown-light: #a07048;
  --brown-pale: #c4956a;
  /* Text */
  --cream: #f8f5ee;
  --cream-warm: #ebe4d5;
  --white: #ffffff;
  --text-primary: #f2ede2;
  --text-muted: #9aabbf;
  --text-accent: #d4a843;
  --border-subtle: rgba(212, 168, 67, 0.18);
  --border-gold: rgba(212, 168, 67, 0.5);
  --border-brown: rgba(122, 82, 48, 0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-label: 'Josefin Sans', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

p {
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}

.site-nav.scrolled {
  background: rgba(5, 13, 26, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.3));
}

.nav-logo-text em {
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}

/* 開いた状態: 上の線 → \ */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

/* 中の線 → 非表示 */
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

/* 下の線 → / */
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Works Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
  padding-bottom: 4px;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  color: var(--gold-light);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  list-style: none;
  padding: 0.75rem 0;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}

.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown-menu li a::after {
  display: none;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.06);
}

/* ─────────────────────────────────────────
   PAGE WRAPPER & SECTIONS
───────────────────────────────────────── */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section heading style */
.section-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_banner.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 13, 26, 0.75) 0%,
      rgba(5, 13, 26, 0.60) 35%,
      rgba(5, 13, 26, 0.82) 75%,
      var(--navy-darkest) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
  line-height: 1.1;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

/* HANZA brand title in hero */
.hero-brand {
  font-family: 'Barlow Condensed', 'Josefin Sans', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.5);
}

.hero-brand em {
  display: block;
  font-style: normal;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  font-size: 0.42em;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.3em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
  transition: color var(--transition);
  background: none;
  outline: none;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--navy-darkest);
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─────────────────────────────────────────
   ABOUT / SELF-INTRO PAGE
───────────────────────────────────────── */
.about-hero {
  padding: 160px 0 80px;
  position: relative;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10%;
  transition: transform var(--transition);
}

.about-image-frame:hover img {
  transform: scale(1.05);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-subtle);
  z-index: 1;
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.about-image-accent-br {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}

.about-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.about-text h1 em {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.about-body {
  margin-top: 2rem;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 2;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* Skills section */
.skills-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.skill-card {
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.skill-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border-subtle);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.skill-card:hover .skill-number {
  color: rgba(212, 168, 67, 0.2);
}

.skill-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.skill-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   WORKS PAGE
───────────────────────────────────────── */
.works-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.works-categories {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  outline: none;
}

.category-btn:hover,
.category-btn.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.05);
}

/* Work items */
.works-section {
  padding: 60px 0 120px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.work-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-item:nth-child(even) {
  direction: rtl;
}

.work-item:nth-child(even)>* {
  direction: ltr;
}

.work-image-container {
  position: relative;
  overflow: hidden;
}

.work-image-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
  filter: saturate(0.9);
}

.work-image-container:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.work-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 26, 0.0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-image-container:hover .work-image-overlay {
  background: rgba(5, 13, 26, 0.4);
}

.work-overlay-text {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.work-image-container:hover .work-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.work-content {
  padding: 2rem 0;
}

.work-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.08);
  line-height: 1;
  margin-bottom: -1rem;
}

.work-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.work-title-jp {
  font-size: 1rem;
  color: var(--gold);
  font-family: var(--font-label);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.work-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.work-tag {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   ORDER PAGE
───────────────────────────────────────── */
.order-page {
  padding: 140px 0 100px;
}

.order-hero-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.order-flow {
  margin-bottom: 6rem;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
  position: relative;
}

.order-step {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  position: relative;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.order-step:hover {
  background: rgba(212, 168, 67, 0.04);
  border-color: var(--border-gold);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(212, 168, 67, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.order-step h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.order-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pricing section */
.pricing-section {
  margin-bottom: 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--gold-deep);
  background: rgba(212, 168, 67, 0.04);
}

.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-darkest);
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0.3rem 1rem;
}

.price-category {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.price-name {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

/* Order notes */
.order-notes {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  margin-bottom: 3rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.note-item h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.note-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-page {
  padding: 140px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.9;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-link-item:last-child {
  border-bottom: none;
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.contact-link-item:hover .contact-link-icon {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.contact-link-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-link-value {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Contact Form */
.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.03);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23d4a843'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--navy-deep);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
  margin-top: 0.5rem;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--transition);
  z-index: 0;
}

.btn-submit:hover {
  color: var(--navy-darkest);
}

.btn-submit:hover::before {
  transform: translateY(0);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--gold-deep);
  background: rgba(212, 168, 67, 0.05);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(160, 176, 200, 0.4);
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Intersection Observer animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────────────────
   MOBILE RESPONSIVE (PROTECTED ARCHITECTURE)
   DO NOT CHANGE Z-INDEX OR SCROLL LOGIC
───────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 2rem;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--navy-darkest) !important;
    z-index: 3000 !important;
    /* Ensure menu container is on top of overlay */
  }

  .nav-links {
    /* Mobile Drawer - Absolute Robustness */
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100dvh !important;
    background: var(--navy-darkest) !important;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);

    display: block !important;
    /* Block is more stable for scroll calc than flex */
    padding: 100px 2rem 80px !important;
    text-align: left !important;

    /* Transition & State Control */
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s, opacity 0.4s;
    z-index: 2200 !important;
    /* CRITICAL: Must be above overlay */

    /* Scroll Fix: DO NOT CHANGE */
    overflow-y: scroll !important;
    /* Force scroll context */
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: auto !important;
    /* Allow all touch on menu */
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Dropdowns on Mobile - Expand the menu height */
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    border-left: 2px solid rgba(212, 168, 67, 0.3) !important;
    padding: 0.8rem 0 0.8rem 1.2rem !important;
    display: none !important;
    /* Controlled by .open */
    box-shadow: none !important;
    margin-top: 0.5rem !important;
    min-width: 0 !important;
    width: 100% !important;
    transition: none !important;
  }

  .nav-dropdown-menu.open {
    display: block !important;
  }

  /* Prevent background scroll when menu is open */
  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
    /* On iOS, overflow:hidden is only a suggestion.
       The real lock is preventing touchmove on the body,
       but we allow it on the drawer. */
  }

  body.menu-open .page,
  body.menu-open footer {
    pointer-events: none !important;
    /* Block interactions with background */
  }

  /* Overlay backdrop */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
    pointer-events: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1500;
    /* Below .site-nav (3000) */
  }

  .nav-links>li {
    width: 100%;
    text-align: center;
  }

  .nav-links>li>a,
  .nav-links>li>.nav-dropdown-trigger {
    font-family: 'Barlow Condensed', var(--font-label), sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory);
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    cursor: pointer;
  }

  .nav-links>li>a:hover,
  .nav-links>li>.nav-dropdown-trigger:hover {
    color: var(--gold-light);
  }

  .nav-toggle {
    display: flex;
    z-index: 2200 !important;
  }

  .about-hero-inner,
  .contact-grid,
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .order-steps {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1.5rem;
  }

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

@media (max-width: 600px) {
  .order-steps {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .cursor-glow {
    display: none !important;
  }
}

/* ─────────────────────────────────────────
   CURSOR GLOW EFFECT  
───────────────────────────────────────── */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
}

/* ─────────────────────────────────────────
   HOME WORKS GRID
───────────────────────────────────────── */
.home-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* ─────────────────────────────────────────
   EL MALO — MULTI-IMAGE WORK
───────────────────────────────────────── */
.work-image-multi {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2px;
}

.work-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  filter: saturate(0.9);
}

.work-image-multi:hover .work-img-main {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.work-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.work-img-sub {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  filter: saturate(0.85);
}

.work-img-sub:hover {
  filter: saturate(1.1);
}

/* Instagram link */
.work-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-subtle);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}

.work-instagram-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.06);
}

.work-instagram-icon {
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   MOBILE RESPONSIVE — ENHANCED
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .site-nav {
    padding: 0 1.25rem;
    height: 70px;
    z-index: 3000 !important;
  }

  .nav-links {
    width: 280px !important;
    padding: 80px 1.5rem 80px !important;
  }

  .nav-links>li {
    margin-bottom: 0.8rem;
    display: block;
    width: 100%;
  }

  .nav-links>li>a,
  .nav-links>li>span.nav-dropdown-trigger {
    font-size: 1.3rem !important;
    padding: 0.5rem 0 !important;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  .hero-cta {
    padding: 0.85rem 2rem;
    font-size: 0.7rem;
  }

  .hero-scroll {
    display: none;
  }

  /* Section wrappers */
  .section-wrapper {
    padding: 0 1.25rem;
  }

  /* Home works grid: 1 column on small phones */
  .home-works-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-hero {
    padding: 110px 0 60px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-accent,
  .about-image-accent-br {
    display: none;
  }

  .about-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  /* Works */
  .works-hero {
    padding: 110px 0 40px;
  }

  .works-section {
    padding: 30px 0 80px;
  }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
    padding: 40px 0;
  }

  .work-sub-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-number {
    font-size: 3.5rem;
  }

  .work-title {
    font-size: 1.6rem;
  }

  /* Order */
  .order-page {
    padding: 110px 0 60px;
  }

  .order-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .order-step {
    padding: 1.75rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Contact */
  .contact-page {
    padding: 110px 0 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
  }

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

  .contact-info p {
    margin-bottom: 1.5rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  /* Pricing card featured label */
  .price-card.featured {
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 1.6rem;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .home-works-grid {
    gap: 1px;
  }

  .work-sub-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-photo-grid {
    grid-template-columns: 1fr;
  }

  .client-photo-side {
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
    display: grid;
  }
}

/* ─────────────────────────────────────────
   HOME WORK CARDS (refactored)
───────────────────────────────────────── */
.home-work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home-work-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.home-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 13, 26, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.home-work-series {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.home-work-name {
  font-size: 1.5rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
}

/* ─────────────────────────────────────────
   WORK INDIVIDUAL PAGES
───────────────────────────────────────── */

/* Full-bleed hero for each work page */
.work-page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.work-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 13, 26, 0.3) 0%,
      rgba(5, 13, 26, 0.7) 60%,
      var(--navy-darkest) 100%);
}

.work-page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.work-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.1;
  margin: 0.5rem 0 0.25rem;
}

.work-page-subtitle {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Body section */
.work-page-body {
  padding: 80px 0 120px;
}

.work-page-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.work-page-intro-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 1.25rem;
}

/* Semi-order options */
.work-options {
  margin-bottom: 6rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.option-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.option-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.option-icon {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.option-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.option-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.option-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* Gallery section */
.work-gallery {
  margin-bottom: 6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gallery-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--gold-light);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  filter: saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

/* CTA at bottom of work pages */
.work-page-cta {
  text-align: center;
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-subtle);
}

.work-page-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Technique section (ビヰドロ絵) */
.work-technique {
  margin-bottom: 6rem;
}

.technique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.technique-step {
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}

.technique-step:hover {
  border-color: var(--border-gold);
}

.technique-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(212, 168, 67, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.technique-step h3 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.technique-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Classic Brown label card */
.work-label-section {
  margin-bottom: 6rem;
}

.label-card {
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  position: relative;
  background: linear-gradient(135deg, rgba(44, 26, 14, 0.3) 0%, rgba(5, 13, 26, 0.0) 100%);
}

.label-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brown-pale), transparent);
}

/* ─────────────────────────────────────────
   CLIENT WORK FEATURED CASE
───────────────────────────────────────── */
.client-feature {
  margin-bottom: 6rem;
}

.client-photo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.client-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
  transition: filter var(--transition);
}

.client-photo-main img:hover {
  filter: saturate(1.1);
}

.client-photo-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-photo-side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  transition: filter var(--transition);
}

.client-photo-side img:hover {
  filter: saturate(1.1);
}

.client-case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.client-case-text h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.client-case-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.client-case-tags-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.client-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─────────────────────────────────────────
   MOBILE — WORK PAGE ENHANCEMENTS
───────────────────────────────────────── */
@media (max-width: 768px) {
  .work-page-hero {
    height: 50vh;
    min-height: 320px;
  }

  .work-page-hero-content {
    padding-bottom: 2.5rem;
  }

  .work-page-title {
    font-size: 2rem;
  }

  .work-page-body {
    padding: 50px 0 80px;
  }

  .options-grid,
  .technique-grid {
    grid-template-columns: 1fr;
  }

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

  .client-photo-grid {
    grid-template-columns: 1fr;
  }

  .client-photo-main img {
    min-height: 260px;
  }

  .client-photo-side {
    flex-direction: row;
  }

  .client-photo-side img {
    height: 180px;
  }

  .client-case-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────
   HOME: NEWS SECTION
───────────────────────────────────────── */
.home-news-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.home-news-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 90px 80px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.news-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.news-item:hover {
  background: rgba(212, 168, 67, 0.03);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.news-date {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

.news-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  white-space: nowrap;
}

.news-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
}

.text-link:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .home-news-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-item {
    grid-template-columns: 70px 70px 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .news-date,
  .news-badge {
    display: inline;
    margin-right: 0.5rem;
  }
}

/* ─────────────────────────────────────────
   HOME: SNS LINKS
───────────────────────────────────────── */
.home-sns-section {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border-subtle);
}

.sns-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
}

.sns-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.sns-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.sns-link:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.sns-link:hover::before {
  opacity: 1;
}

.sns-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.sns-name {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.sns-handle {
  font-size: 1rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.sns-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.sns-link:hover .sns-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sns-links {
    grid-template-columns: 1fr;
  }

  .sns-link {
    padding: 1.5rem;
  }
}

/* ─────────────────────────────────────────
   ABOUT: PROFILE DATA TABLE
───────────────────────────────────────── */
.about-profile-data {
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

.profile-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: baseline;
}

.profile-key {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile-val {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   EXHIBITION TIMELINE
───────────────────────────────────────── */
.exhibition-timeline {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 5rem;
}

.ex-year-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: start;
}

.ex-year {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(212, 168, 67, 0.15);
  line-height: 1;
  letter-spacing: -0.02em;
  position: sticky;
  top: 100px;
}

.ex-entries {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.ex-entry {
  padding: 2rem 2.5rem;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), transform var(--transition);
}

.ex-entry:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
}

.ex-entry-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ex-month {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.ex-type {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border: 1px solid;
}

.ex-type.solo {
  border-color: var(--gold);
  color: var(--gold);
}

.ex-type.group {
  border-color: var(--brown-pale);
  color: var(--brown-pale);
}

.ex-title {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.ex-venue {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.ex-date-range {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  opacity: 0.75;
}

.ex-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .ex-year-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ex-year {
    font-size: 2.5rem;
    position: static;
  }

  .ex-entry {
    padding: 1.5rem;
  }

  .ex-entry:hover {
    transform: none;
  }
}

/* ─────────────────────────────────────────
   SNS: Instagram single large card
───────────────────────────────────────── */
.sns-links-single {
  max-width: 540px;
  margin: 0 auto;
}

.sns-link-large {
  padding: 3rem 3.5rem;
  justify-content: space-between;
}

.sns-link-large .sns-icon {
  font-size: 2.5rem;
}

.sns-link-large .sns-handle {
  font-size: 1.3rem;
  color: var(--ivory);
}

/* ─────────────────────────────────────────
   PRICING: 4-column grid + design fee card
───────────────────────────────────────── */
.pricing-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.price-card.design-fee {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
}

.price-card.design-fee .price-category {
  color: var(--gold-light);
}

.price-card.design-fee .price-amount small {
  font-size: 0.55em;
  vertical-align: middle;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .sns-link-large {
    padding: 2rem;
  }

  .sns-link-large .sns-handle {
    font-size: 1rem;
  }
}

/* ─────────────────────────────────────────
   PRICING: 3-column grid (施工料のみ)
───────────────────────────────────────── */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ─────────────────────────────────────────
   DESIGN FEE BANNER (横長・施工グリッド下)
───────────────────────────────────────── */
.design-fee-banner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
  padding: 2.5rem 3rem;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.design-fee-banner::before {
  content: 'Design Fee';
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.design-fee-banner-left {
  text-align: center;
  min-width: 180px;
}

.design-fee-banner-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.design-fee-banner-title {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.design-fee-banner-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.design-fee-banner-amount small {
  font-size: 0.5em;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0;
  vertical-align: middle;
}

.design-fee-banner-divider {
  width: 1px;
  height: 100%;
  min-height: 80px;
  background: var(--border-gold);
  opacity: 0.4;
  align-self: stretch;
}

.design-fee-banner-right {
  padding-left: 1rem;
}

.design-fee-banner-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.design-fee-banner-desc strong {
  color: var(--ivory);
}

.design-fee-banner-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.design-fee-banner-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.design-fee-banner-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .design-fee-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .design-fee-banner-divider {
    display: none;
  }

  .design-fee-banner-left {
    text-align: left;
  }

  .design-fee-banner-right {
    padding-left: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════
   ORDER TYPE SELECT
═══════════════════════════════════════════ */
.order-type-select {
  margin: 4rem 0;
  text-align: center;
}

.order-type-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.order-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.order-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  text-decoration: none;
  color: var(--ivory);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.order-type-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12) 0%, transparent 60%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.order-type-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.order-type-card-title {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.order-type-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
}

.order-type-card-arrow {
  margin-top: 1.5rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

@media (max-width: 600px) {
  .order-type-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   GLOBE ORDER PAGE
═══════════════════════════════════════════ */
.globe-series-block {
  margin-bottom: 6rem;
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(160deg, rgba(5, 13, 26, 0.8) 0%, rgba(10, 22, 40, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.globe-series-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.globe-series-block--motif {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(30, 18, 2, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.globe-series-block--motif::before {
  background: linear-gradient(90deg, #d4a843, #f5d17a, transparent);
}

.globe-series-header {
  margin-bottom: 2.5rem;
}

.globe-series-title {
  font-family: var(--font-label);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  letter-spacing: 0.12em;
  color: var(--ivory);
  margin: 0.5rem 0 1rem;
}

.globe-series-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.globe-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.globe-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.globe-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.globe-feature-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.globe-feature-text strong {
  color: var(--ivory);
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.globe-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.globe-price-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.globe-price-card:hover {
  border-color: var(--border-gold);
  background: rgba(212, 168, 67, 0.04);
}

.globe-price-card--mid {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.07) 0%, transparent 100%);
  transform: scale(1.05);
}

.globe-price-card--large {
  border-color: rgba(212, 168, 67, 0.45);
}

.globe-price-size {
  font-family: 'Barlow Condensed', var(--font-label), sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.globe-price-amount {
  font-family: var(--font-label);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
  font-weight: 300;
}

.globe-price-tax {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-left: 0.3rem;
  letter-spacing: 0.1em;
}

.globe-price-note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--gold);
  line-height: 1.8;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding-top: 1rem;
}

.globe-price-note small {
  color: var(--text-muted);
  font-size: 0.66rem;
}

@media (max-width: 768px) {
  .globe-series-block {
    padding: 2rem 1.2rem;
  }

  .globe-price-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .globe-price-card--mid {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   NEW ORDER PAGE LAYOUT
═══════════════════════════════════════════ */

/* Hero */
.order-hero-section {
  padding: 7rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(3, 9, 18, 1) 0%, rgba(5, 13, 26, 0.9) 100%);
}

/* Globe Banner */
.order-globe-banner-section {
  padding: 0 0 3rem;
}

.order-globe-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(120deg, rgba(30, 18, 2, 0.95) 0%, rgba(10, 22, 40, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.order-globe-banner::before {
  content: '🌍';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  opacity: 0.04;
  pointer-events: none;
  filter: grayscale(1);
}

.order-globe-banner-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.order-globe-banner-title {
  font-family: var(--font-label);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.order-globe-banner-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.order-globe-banner-btn {
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--navy);
  background: var(--gold);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.order-globe-banner-btn:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .order-globe-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

  .order-globe-banner-btn {
    width: 100%;
    text-align: center;
  }
}

/* Flow */
.order-flow-section {
  padding: 5rem 0;
  background: rgba(3, 9, 18, 0.6);
}

.order-steps-new {
  max-width: 640px;
  margin: 0 auto;
}

.order-step-new {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 2.4rem 2.8rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.order-step-new:hover {
  border-color: var(--border-gold);
  background: rgba(212, 168, 67, 0.03);
}

.step-num-new {
  font-family: 'Barlow Condensed', var(--font-label), sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  min-width: 2.5rem;
}

.step-body-new h3 {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-weight: 300;
}

.step-body-new p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.step-arrow-new {
  text-align: center;
  color: var(--gold);
  opacity: 0.2;
  font-size: 1.5rem;
  padding: 1rem 0;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 200;
}

@media (max-width: 600px) {
  .order-step-new {
    padding: 1.4rem 1.2rem;
    gap: 1.2rem;
  }

  .step-num-new {
    font-size: 1.6rem;
  }
}

/* Pricing */
.order-pricing-section {
  padding: 5rem 0;
}

.order-price-table {
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.order-price-row {
  display: grid;
  grid-template-columns: 160px 1fr 120px 120px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s ease;
}

.order-price-row:last-child {
  border-bottom: none;
}

.order-price-row:not(.order-price-row--header):hover {
  background: rgba(212, 168, 67, 0.03);
}

.order-price-row--header {
  background: rgba(212, 168, 67, 0.06);
  border-bottom: 1px solid var(--border-gold);
}

.order-price-row--header>div {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
}

.order-price-row--featured {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.06) 0%, transparent 100%);
  border-left: 3px solid var(--gold);
}

.opr-size,
.opr-works,
.opr-price,
.opr-period {
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opr-size {
  border-right: 1px solid var(--border-subtle);
}

.opr-size-label {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  text-transform: uppercase;
  font-weight: 400;
}

.opr-size-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.opr-works {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-right: 1px solid var(--border-subtle);
}

.opr-works small {
  font-size: 0.75rem;
  color: rgba(212, 168, 67, 0.6);
}

.opr-price {
  font-family: var(--font-label);
  font-size: 1rem;
  color: var(--ivory);
  font-weight: 300;
  letter-spacing: 0.05em;
  border-right: 1px solid var(--border-subtle);
}

.opr-period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .order-price-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .order-price-row--header .opr-size {
    display: none;
  }

  .order-price-row--header .opr-works {
    grid-column: 1;
  }

  .order-price-row--header .opr-price {
    grid-column: 2;
  }

  .order-price-row--header .opr-period {
    display: none;
  }

  .opr-size {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem 1.2rem;
  }

  .opr-works {
    border-right: 1px solid var(--border-subtle);
  }

  .opr-period {
    display: none;
  }
}

/* Design fee */
.design-fee-simple {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.07) 0%, transparent 60%);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  align-items: flex-start;
}

.design-fee-simple-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.design-fee-simple-amount {
  font-family: var(--font-label);
  font-size: 1.4rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.design-fee-simple-amount small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.design-fee-simple-right {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.design-fee-simple-right strong {
  color: var(--ivory);
}

.design-fee-simple-right ul {
  margin-top: 0.8rem;
  list-style: none;
  padding: 0;
}

.design-fee-simple-right ul li {
  padding: 0.25rem 0;
  color: rgba(212, 168, 67, 0.8);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .design-fee-simple {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
  }
}

/* Notes */
.order-notes-section {
  padding: 5rem 0;
  background: rgba(3, 9, 18, 0.5);
}

.notes-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.note-item-new {
  padding: 1.8rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease;
}

.note-item-new:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.note-item-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.note-item-new h4 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.note-item-new p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   CUSTOM GLOBE — COMPARE TABLE
═══════════════════════════════════════════ */
.cg-compare-table {
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 4rem;
}

.cg-compare-header,
.cg-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.cg-compare-header {
  background: rgba(212, 168, 67, 0.06);
  border-bottom: 1px solid var(--border-gold);
}

.cg-compare-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s ease;
}

.cg-compare-row:last-child {
  border-bottom: none;
}

.cg-compare-row:hover {
  background: rgba(212, 168, 67, 0.03);
}

.cg-compare-cell {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cg-compare-cell:last-child {
  border-right: none;
}

.cg-label-col {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cg-row-icon {
  font-size: 1rem;
}

.cg-series-badge {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.cg-series-badge--gold {
  color: var(--gold);
}

.cg-series-name {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
}

.cg-series-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cg-series1 {
  background: rgba(255, 255, 255, 0.01);
}

.cg-series2 {
  background: rgba(212, 168, 67, 0.04);
}

.cg-cell-check {
  font-size: 0.88rem;
  color: var(--ivory);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

.cg-cell-check::before {
  content: '';
}

.cg-cell-minus {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.15);
}

.cg-cell-gold {
  font-size: 0.88rem;
  color: var(--gold);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .cg-compare-cell {
    padding: 1rem 0.8rem;
  }

  .cg-series-name {
    font-size: 0.85rem;
  }

  .cg-label-col {
    font-size: 0.78rem;
  }

  .cg-cell-check,
  .cg-cell-gold {
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════
   CUSTOM GLOBE — SAMPLE GALLERY
═══════════════════════════════════════════ */
.cg-sample-container {
  margin-bottom: 6rem;
}

.cg-sample-image-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  background: var(--navy-darker);
}

.cg-sample-image-frame img {
  width: 100%;
  display: block;
  transition: transform 1.2s ease, filter 0.8s ease;
  filter: saturate(0.95);
}

.cg-sample-image-frame:hover img {
  transform: scale(1.02);
  filter: saturate(1.1);
}

.cg-sample-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.cg-price-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 5rem;
}

.cg-price-block {
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.cg-price-block--motif {
  border: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.03) 0%, transparent 30%);
}

.cg-price-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.cg-price-block--motif .cg-price-block-header {
  border-bottom: 1px solid var(--border-gold);
  background: rgba(212, 168, 67, 0.05);
}

.cg-price-block-badge {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-subtle);
}

.cg-price-block-badge--gold {
  color: var(--gold);
  border-color: var(--border-gold);
}

.cg-price-block-name {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
}

.cg-price-row-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cg-price-row-card {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
  transition: background 0.2s ease;
}

.cg-price-row-card:last-child {
  border-right: none;
}

.cg-price-row-card:hover {
  background: rgba(212, 168, 67, 0.04);
}

.cg-price-row-card--mid {
  background: rgba(212, 168, 67, 0.03);
  border-top: 2px solid var(--gold);
}

.cg-price-row-card--gold {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.08) 0%, rgba(212, 168, 67, 0.02) 100%);
  border-top: 2px solid var(--gold);
}

.cg-prc-size {
  font-family: var(--font-label);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.cg-prc-sep {
  width: 2rem;
  height: 1px;
  background: var(--border-gold);
  margin: 0 auto 0.8rem;
}

.cg-prc-price {
  font-family: var(--font-label);
  font-size: 1.6rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.cg-prc-tax {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cg-prc-option {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-family: var(--font-label);
}

.cg-price-upgrade {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  gap: 0.3rem;
}

.cg-price-upgrade-line {
  width: 1px;
  height: 1.5rem;
  background: var(--border-gold);
}

.cg-price-upgrade-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.cg-price-upgrade-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.5;
}

.cg-gold-note {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(212, 168, 67, 0.05);
  border-top: 1px solid var(--border-gold);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  align-items: flex-start;
}

.cg-gold-note-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cg-gold-note strong {
  color: var(--ivory);
}

@media (max-width: 600px) {
  .cg-price-row-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cg-price-row-card {
    padding: 1.2rem 0.6rem;
  }

  .cg-prc-size {
    font-size: 1.8rem;
  }

  .cg-prc-price {
    font-size: 1.1rem;
  }

  .cg-gold-note {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* --- Final Tidying Up for Order Page --- */
.order-price-row {
  border-radius: 4px;
}

.order-flow-section .section-label,
.order-pricing-section .section-label,
.order-notes-section .section-label {
  text-align: center;
  width: 100%;
}

.order-steps-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Ensure consistent alignment in the compare table */
.cg-compare-cell {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.cg-label-col {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.cg-series-name {
  font-weight: 500;
}

/* Subtle pattern for hero overlay */
.work-page-hero-overlay {
  background: linear-gradient(180deg, rgba(5, 13, 26, 0.3) 0%, rgba(5, 13, 26, 0.8) 100%);
  position: absolute;
  inset: 0;
}

.back-link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.back-link:hover {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: translateX(-4px);
}

/* ─────────────────────────────────────────
   CUSTOM GLOBE ORDER FORM STYLES
───────────────────────────────────────── */
.order-form-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-darkest) 0%, rgba(10, 22, 40, 0.5) 100%);
}

.order-progress {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  padding: 0 1rem;
}

.order-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-subtle);
  z-index: 0;
}

.progress-step {
  position: relative;
  z-index: 1;
  background: var(--navy-darkest);
  padding: 0.5rem 1rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}

.progress-step.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}

.progress-step.completed {
  color: var(--ivory);
  border-color: var(--border-gold);
}

.order-form-container {
  max-width: 900px;
  margin: 0 auto 100px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  padding: 4rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-title {
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.form-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Option Cards (Series/Size) */
.option-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.option-grid-form.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.option-card-form {
  cursor: pointer;
  position: relative;
}

.option-card-form input,
.font-option-card input,
.color-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.option-card-form .card-content {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.option-card-form input:checked+.card-content {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.05);
}

.card-badge {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

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

.card-visual {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.option-card-form h3 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.option-card-form p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-price {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* Font Style Grid */
.font-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.font-option-card {
  cursor: pointer;
  text-align: center;
  position: relative;
}

.font-preview {
  height: 100px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.font-preview.serif {
  font-family: 'Playfair Display', serif;
}

.font-preview.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.font-preview.block {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.font-option-card input:checked+.font-preview {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold-light);
}

.font-option-card span,
.font-sample-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.font-sample-card {
  text-align: center;
  transition: all 0.3s ease;
}

.font-sample-card .font-preview {
  margin-bottom: 0.5rem;
}

.font-sample-card.active .font-preview {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 168, 67, 0.1);
}

.font-sample-card.active span {
  color: var(--gold);
}

/* Color Grid */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.color-option {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.color-swatch.other {
  background: rgba(255, 255, 255, 0.05);
}

.color-option input:checked+.color-swatch {
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.3);
}

.color-option span,
.color-sample span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-label);
}

.color-sample {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.color-sample.active .color-swatch {
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
}

.color-sample.active span {
  color: var(--gold);
}

/* Form Sections */
.form-sub-section {
  margin-bottom: 3.5rem;
}

.form-sub-section h3 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Navigation Buttons */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-prev {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 1rem 2rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-prev:hover {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-next {
  background: var(--gold);
  border: none;
  color: var(--navy-darkest);
  padding: 1rem 3rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.btn-next:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.btn-submit-form {
  background: var(--gold);
  border: none;
  color: var(--navy-darkest);
  padding: 1.25rem 3rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  margin-left: auto;
}

.btn-submit-form:hover {
  background: var(--gold-light);
}

/* Success Overlay */
.form-success-overlay {
  display: none;
  padding: 6rem 2rem;
  text-align: center;
}

.form-success-overlay.show {
  display: block;
}

.success-icon {
  font-size: 4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}

.success-content h2 {
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.success-content p {
  color: var(--text-muted);
  line-height: 2;
  font-size: 1.1rem;
}

.form-caution {
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-top: 0.6rem;
  opacity: 0.8;
}

.form-policy-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 4px;
}

.form-policy-note p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ivory);
  margin: 0;
}

@media (max-width: 768px) {
  .order-form-container {
    padding: 2.5rem 1.5rem;
  }

  .option-grid-form,
  .option-grid-form.three-cols {
    grid-template-columns: 1fr;
  }

  .font-grid {
    grid-template-columns: 1fr;
  }

  .color-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-progress {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }

  .progress-step {
    white-space: nowrap;
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Small Sample Grid (Base Colors) */
.cg-small-sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cg-small-sample-item {
  text-align: center;
}

.cg-small-sample-frame {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  margin-bottom: 1rem;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.cg-small-sample-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cg-small-sample-item:hover img {
  transform: scale(1.05);
}

.cg-small-sample-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .cg-small-sample-grid {
    gap: 1rem;
  }
}

/* Vintage Globe Selection Grid */
.vintage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.vintage-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 4px;
}

.vintage-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
}

.vintage-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vintage-info span:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
}

.stock-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  width: fit-content;
  margin: 0.5rem auto 0;
}

.vintage-card:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
}

.vintage-card:hover img {
  transform: scale(1.02);
}

.vintage-card.active {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
}

.vintage-card.active::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy-darkest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

@media (max-width: 600px) {
  .vintage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}