:root {
  --ink: #24292f;
  --muted: #7d7668;
  --paper: #f7f5f1;
  --surface: #fffdf9;
  --border: #e5dfd3;
  --navy: #16263f;
  --navy-deep: #0d1a2d;
  --gold: #b3905a;
  --gold-bright: #c9a86a;
  --gold-pale: #e6d3ae;
  --line: #06c755;
  --danger: #b91c1c;
  --on-dark: #dfe3ea;
  --on-dark-muted: #a7b0bf;
  --shadow-sm: 0 1px 3px rgba(13, 26, 45, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 26, 45, 0.14);
  --font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --bleed: calc(50% - 50vw);
  --band-pad: max(1.2rem, calc(50vw - 500px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.06em;
}
h1 { font-size: 1.7rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.3; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}
.brand-caption {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--gold-bright);
}
.brand-logo { max-height: 40px; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.1rem; }
.site-nav a {
  text-decoration: none;
  font-size: 0.87rem;
  letter-spacing: 0.08em;
  color: var(--on-dark);
  padding: 0.35rem 0.7rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.site-nav .nav-cta {
  margin-left: 0.6rem;
  padding: 0.45rem 1.4rem;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-weight: 700;
  border-radius: 3px;
  border-bottom: none;
  transition: opacity 0.2s;
}
.site-nav .nav-cta:hover { opacity: 0.88; color: var(--navy-deep); }

/* ---------- Layout ---------- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 1.2rem 2rem; }
.section { padding: 2.8rem 0 0.5rem; }
.section-title {
  text-align: center;
  font-size: 1.45rem;
  margin: 0 0 1.8rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2px;
  background: var(--gold);
  margin: 0.7rem auto 0;
}
.section-title.on-dark { color: #fff; }
.section-lead { text-align: center; max-width: 40em; margin: 0 auto; }
.section-more { text-align: center; margin-top: 1.6rem; }
.arrow { font-family: var(--font-sans); }

/* ---------- Hero ---------- */
.hero {
  margin: 0 var(--bleed);
  padding: clamp(4rem, 11vw, 7rem) var(--band-pad) clamp(3.5rem, 9vw, 6rem);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 168, 106, 0.18), transparent 55%),
    linear-gradient(120deg, #0d1a2d 0%, #16263f 55%, #24385a 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-inner { max-width: 1000px; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 5.2vw, 3rem);
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.hero-lead {
  color: var(--on-dark);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 0 2rem;
  max-width: 34em;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.button {
  display: inline-block;
  padding: 0.7rem 1.9rem;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.button:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.button.primary { background: var(--navy); color: #fff; }
.button.primary:hover { background: #24385a; border-color: #24385a; transform: translateY(-1px); }
.button.gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}
.button.gold:hover { background: var(--gold-bright); color: var(--navy-deep); transform: translateY(-1px); }
.button.ghost { border-color: rgba(255, 255, 255, 0.8); color: #fff; }
.button.ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.button.small { padding: 0.3rem 0.9rem; font-size: 0.83rem; letter-spacing: 0.05em; }
.line-button {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  background: var(--line);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.line-button:hover { opacity: 0.85; }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.6rem 1.3rem;
  text-align: center;
}
.feature-icon { width: 46px; height: 46px; margin: 0 auto 0.8rem; color: var(--gold); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.02rem; }
.feature-card p { margin: 0; font-size: 0.86rem; color: var(--muted); text-align: left; }

/* ---------- Dark band / steps ---------- */
.dark-band {
  margin: 2.8rem var(--bleed) 0;
  padding: 3rem var(--band-pad) 3.2rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(201, 168, 106, 0.10), transparent 50%),
    var(--navy-deep);
  color: var(--on-dark);
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.step { flex: 1 1 160px; max-width: 220px; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '\203A';
  position: absolute;
  top: 1.1rem;
  right: -1.45rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.step-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.step-icon { width: 40px; height: 40px; color: var(--gold-bright); }
.step-icon svg { width: 100%; height: 100%; }
.step-no {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  line-height: 1.1;
}
.step-no em {
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}
.step h3 {
  color: #fff;
  font-size: 0.98rem;
  margin: 0.6rem 0 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(201, 168, 106, 0.35);
}
.step p { margin: 0; font-size: 0.8rem; color: var(--on-dark-muted); text-align: left; }

/* ---------- Booking band (inline form) ---------- */
.booking-band { margin-bottom: -2rem; }
.booking-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
}
.booking-band-intro .section-title { text-align: left; }
.booking-band-intro .section-title::after { margin-left: 0; }
.booking-benefits {
  list-style: none;
  margin: 1.6rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.booking-benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--on-dark);
}
.benefit-icon { width: 34px; height: 34px; color: var(--gold-bright); }
.benefit-icon svg { width: 100%; height: 100%; }
.booking-band-form { background: rgba(255, 255, 255, 0.04); padding: 1.6rem 1.5rem; border: 1px solid rgba(201, 168, 106, 0.25); }
.booking-band-form .form-field { margin-bottom: 0.9rem; }
.booking-band-form label { color: var(--on-dark); font-size: 0.84rem; }
.booking-band-form input,
.booking-band-form select,
.booking-band-form textarea { max-width: none; }
.booking-band-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.booking-band-form .button { width: 100%; text-align: center; }
.req {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0 0.4rem;
  border-radius: 2px;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.on-dark-note { color: var(--on-dark-muted); margin: 0.8rem 0 0; text-align: center; }
.on-dark-note a { color: var(--gold-bright); }

/* ---------- Fabric cards ---------- */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1.3rem;
}
.fabric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.fabric-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fabric-thumb { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.fabric-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2a44 0%, #0d1a2d 55%, #2a3f60 100%);
  color: var(--gold-pale);
  font-family: var(--font-serif);
  letter-spacing: 0.25em;
  font-size: 0.78rem;
}
.fabric-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.25rem; flex: 1; text-align: center; }
.fabric-body h3 { margin: 0; font-size: 1rem; }
.fabric-meta { margin: 0; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; }
.fabric-body .price {
  margin: 0.3rem 0 0.7rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.fabric-body .button { margin-top: auto; text-align: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery-item { margin: 0; overflow: hidden; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.6rem 1.4rem 1.3rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial blockquote { margin: 0.6rem 0 0.8rem; font-size: 0.88rem; color: var(--ink); }
.testimonial figcaption { font-size: 0.82rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pricing-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.2rem 1.4rem;
}
.pricing-card h3 { margin: 0; font-size: 1.1rem; }
.pricing-desc { margin: 0; font-size: 0.84rem; color: var(--muted); min-height: 3em; }
.pricing-price {
  margin: 0.4rem 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.pricing-price small { font-size: 0.72rem; color: var(--muted); font-family: var(--font-sans); }
.pricing-card .button { margin-top: auto; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="url"],
.form-field input[type="password"],
.form-field input[type="datetime-local"],
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 480px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(179, 144, 90, 0.18);
}
.form-field small { color: var(--muted); display: block; font-size: 0.82rem; }
.form-field ul { list-style: none; padding: 0; margin: 0.2rem 0; }
.form-field li { margin-bottom: 0.15rem; }
.errorlist { color: var(--danger); font-size: 0.88rem; }
.note { color: var(--muted); font-size: 0.88rem; }

form .button[type="submit"] { min-width: 220px; }

/* ---------- Messages ---------- */
.messages { max-width: 1000px; margin: 0.8rem auto 0; padding: 0 1.2rem; }
.message {
  padding: 0.7rem 1.1rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  background: #eef2fa;
  border-left: 3px solid var(--navy);
  font-size: 0.92rem;
}
.message.success { background: #eef7f0; border-left-color: #2e7d4f; }
.message.error { background: #fdefef; border-left-color: var(--danger); }

/* ---------- Cards / tables ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.card p { margin: 0.15rem 0; font-size: 0.92rem; }

.detail-table, .admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  margin: 0.7rem 0 1.8rem;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.detail-table th, .detail-table td,
.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.detail-table tr:last-child th, .detail-table tr:last-child td,
.admin-table tbody tr:last-child td { border-bottom: none; }
.detail-table th { width: 30%; background: #f2efe7; font-weight: 600; color: var(--navy); }
.admin-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  white-space: nowrap;
}
.admin-table tbody tr:hover { background: #faf8f2; }

.badge {
  display: inline-block;
  padding: 0.05rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--muted);
}
.badge.warning { background: #fdf6e3; border-color: var(--gold-bright); color: #8a6d3b; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; gap: 0.45rem; flex-wrap: wrap; margin: 1.2rem 0; }
.filter-bar a {
  padding: 0.3rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  background: var(--surface);
  color: var(--ink);
  transition: all 0.2s;
}
.filter-bar a:hover { border-color: var(--navy); }
.filter-bar a.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Progress ---------- */
.progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}
.progress li {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.86rem;
}
.progress li.done { background: var(--navy); border-color: var(--navy); color: #fff; }
.progress li.done::before { content: '✓ '; color: var(--gold-pale); }

/* ---------- Order form ---------- */
.order-fabric-summary {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0 1.8rem;
  box-shadow: var(--shadow-sm);
}
.order-fabric-summary img { width: 130px; }
.order-fabric-summary h2 { margin: 0 0 0.2rem; }

/* ---------- Dashboard ---------- */
.dashboard-layout { display: grid; grid-template-columns: 210px 1fr; gap: 1.8rem; margin-top: 1.2rem; }
.dashboard-nav h2 { margin: 0 0 0.6rem; font-size: 1rem; }
.dashboard-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem;
  box-shadow: var(--shadow-sm);
}
.dashboard-nav a {
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.15s;
}
.dashboard-nav a:hover { background: var(--paper); color: var(--navy); }
.dashboard-content h1 { margin-top: 0.5rem; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.1rem; }
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.4rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-value { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.stat-label { color: var(--muted); font-size: 0.88rem; }

/* ---------- Area note (booking page) ---------- */
.area-note {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.1rem 1.4rem;
  margin: 1.2rem 0 1.8rem;
  box-shadow: var(--shadow-sm);
}
.area-note h2 { margin-top: 0.2rem; font-size: 1.05rem; }
.area-list { columns: 2; margin: 0.4rem 0; padding-left: 1.2rem; font-size: 0.92rem; }
.area-list li { margin-bottom: 0.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 0;
  padding: 3rem var(--band-pad) 1.5rem;
  background: var(--navy-deep);
  color: var(--on-dark-muted);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 106, 0.5);
  border-radius: 50%;
  color: var(--gold-bright);
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--gold-bright); color: var(--navy-deep); }
.social-links svg { width: 17px; height: 17px; }
.footer-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.site-footer h3:nth-of-type(2) { margin-top: 1.4rem; }
.footer-brand p { margin: 0.2rem 0; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}
.footer-caption { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold-bright); }
.site-footer h3 {
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin: 0 0 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-copy {
  text-align: center;
  margin: 2.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  body { font-size: 15px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-nav nav { flex-direction: row; flex-wrap: wrap; }
  .area-list { columns: 1; }
  .admin-table { display: block; overflow-x: auto; }
  .order-fabric-summary { flex-direction: column; align-items: flex-start; }
  .step { flex-basis: 100%; max-width: none; }
  .step:not(:last-child)::after { content: none; }
  .step h3 { margin-top: 0.3rem; }
  .booking-band-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-band-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
