/* Kiln & Clay — warm handmade studio styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --clay: #b85c38;
  --clay-deep: #8f3f24;
  --clay-soft: #d4896a;
  --terracotta: #c46b4a;
  --sand: #f3e6d5;
  --sand-deep: #e8d4bc;
  --cream: #faf6f0;
  --paper: #fffdf9;
  --ink: #2c211c;
  --ink-soft: #5c4a40;
  --muted: #7a6558;
  --line: rgba(44, 33, 28, 0.12);
  --line-strong: rgba(44, 33, 28, 0.22);
  --sage: #6b7f6a;
  --sage-soft: #e4ebe3;
  --shadow: 0 12px 40px rgba(44, 33, 28, 0.1);
  --shadow-soft: 0 4px 18px rgba(44, 33, 28, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(212, 137, 106, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 40%, rgba(107, 127, 106, 0.08), transparent 45%),
    var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--clay-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clay);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); margin: 0 0 0.55em; }
h3 { font-size: 1.25rem; margin: 0 0 0.4em; }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(100% - 2rem, 720px);
}

.center { text-align: center; }
.soft { color: var(--ink-soft); }
.muted { color: var(--muted); }
.small { font-size: 0.92rem; }
.tight { margin-bottom: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand:hover { color: inherit; }

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sand);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: var(--sand);
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--clay-deep);
  background: rgba(184, 92, 56, 0.1);
}

.site-nav a.nav-cta {
  background: var(--clay);
  color: var(--paper);
  margin-left: 0.35rem;
}

.site-nav a.nav-cta:hover {
  background: var(--clay-deep);
  color: var(--paper);
}

.site-nav a.nav-cta[aria-current="page"] {
  background: var(--clay-deep);
  color: var(--paper);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--clay);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(143, 63, 36, 0.25);
}

.btn-primary:hover {
  background: var(--clay-deep);
  color: var(--paper);
}

.btn-outline {
  background: transparent;
  border-color: var(--clay);
  color: var(--clay-deep);
}

.btn-outline:hover {
  background: rgba(184, 92, 56, 0.1);
  color: var(--clay-deep);
}

.btn-ghost {
  background: rgba(255, 253, 249, 0.18);
  border-color: rgba(255, 253, 249, 0.55);
  color: var(--paper);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 253, 249, 0.3);
  color: var(--paper);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--clay-deep);
  white-space: nowrap;
}

.text-link:hover {
  color: var(--clay);
  text-decoration: underline;
}

/* Eyebrows & labels */
.eyebrow,
.script-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.75rem;
}

.script-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  text-align: center;
}

.section-title { margin-bottom: 0.4em; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.center-head {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36em;
}

/* Hero home */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 33, 28, 0.15) 0%, rgba(44, 33, 28, 0.55) 55%, rgba(44, 33, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(44, 33, 28, 0.45) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
}

.hero .eyebrow { color: var(--clay-soft); }
.hero h1 { color: var(--paper); max-width: 12em; }
.hero .lede { color: rgba(255, 253, 249, 0.9); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.center-actions { justify-content: center; }

/* Bands */
.band {
  padding: 4rem 0;
}

.band-cream { background: transparent; }
.band-sand { background: var(--sand); }
.band-terracotta {
  background:
    linear-gradient(135deg, var(--clay-deep), var(--terracotta) 55%, #a85438);
  color: var(--paper);
}

.intro-band { padding-top: 3.5rem; padding-bottom: 2.5rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--clay-deep);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.feature-split.reverse {
  direction: rtl;
}
.feature-split.reverse > * {
  direction: ltr;
}

.feature-img {
  min-height: 320px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.feature-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 3px var(--sage-soft);
}

/* Quote */
.quote-band {
  padding: 3.5rem 0;
}

.quote-band blockquote {
  margin: 0;
  text-align: center;
}

.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 1rem;
}

.quote-band footer {
  font-size: 0.95rem;
  color: rgba(255, 253, 249, 0.8);
  font-style: normal;
}

/* Product cards */
.card-grid-section {
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
  text-decoration: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}

.product-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.price {
  font-weight: 700;
  color: var(--clay-deep);
  margin: 0;
  font-size: 1rem;
}

.product-body .muted {
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 0.75rem;
}

.product-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.stock-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(250, 246, 240, 0.92);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* Mosaic */
.mosaic-section {
  padding: 4rem 0 4.5rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.mosaic-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--shadow-soft);
}

.mosaic-item.tall {
  grid-row: span 2;
  min-height: 100%;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.mosaic-item.tall img {
  min-height: 460px;
}

.mosaic-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(44, 33, 28, 0.75));
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA band */
.cta-band .cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  aspect-ratio: 4/3;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.simple-cta {
  padding: 4.5rem 0;
}

/* Page heroes */
.page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  min-height: 420px;
}

.page-hero-wide {
  grid-template-columns: 1fr 1fr;
}

.page-hero-media {
  min-height: 280px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.page-hero-copy {
  padding: clamp(2rem, 5vw, 3.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero .btn-ghost {
  background: var(--sand);
  border-color: var(--line-strong);
  color: var(--ink);
}

.page-hero .btn-ghost:hover {
  background: var(--sand-deep);
  color: var(--ink);
}

/* Classes */
.class-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.class-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.class-card-img {
  min-height: 220px;
  background: var(--sand);
}

.class-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.class-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
}

.class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(184, 92, 56, 0.12);
  color: var(--clay-deep);
}

.pill-soft {
  background: var(--sage-soft);
  color: var(--sage);
}

.class-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

.class-details div {
  margin: 0;
}

.class-details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.15rem;
}

.class-details dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.info-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.expect-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.expect-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--clay-soft);
}

.expect-list strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.expect-list span {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.expect-list.compact li {
  border-left-color: var(--sage);
}

.info-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.info-figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.info-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--paper);
}

/* Story */
.prose-wrap {
  max-width: 720px;
}

.prose {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.drop-lead::first-letter {
  font-family: var(--font-display);
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  padding-right: 0.12em;
  color: var(--clay);
  font-weight: 600;
}

.timeline-section {
  padding: 4rem 0;
}

.timeline {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 0;
  max-width: 720px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4.5rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: var(--sand-deep);
}

.timeline li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.75rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clay-deep);
  text-align: right;
  padding-top: 1.15rem;
  font-size: 0.95rem;
}

.tl-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.tl-card::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 1.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--clay-soft);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.person-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.person-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-deep);
}

.person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.person-body .role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clay);
  margin: -0.15rem 0 0.55rem;
  letter-spacing: 0.02em;
}

.person-body p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Shop */
.shop-toolbar-band {
  padding: 1.5rem 0 0.5rem;
}

.shop-grid-band {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-btn {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover {
  border-color: var(--clay-soft);
  color: var(--ink);
}

.filter-btn.is-active {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
}

.filter-count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-card.is-hidden {
  display: none;
}

.empty-filter {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.visit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.visit-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.visit-address {
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hours-list li:last-child { border-bottom: 0; }

.hours-list.large li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.icon-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.icon-list li {
  padding: 0.3rem 0;
  color: var(--ink-soft);
}

.ilabel {
  display: inline-block;
  min-width: 3.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-section {
  padding: 0 0 4rem;
}

.map-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-visual {
  position: relative;
  min-height: 360px;
  background: var(--sand-deep);
}

.map-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  filter: saturate(0.9);
}

.map-overlay-card {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 280px;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-pin {
  color: var(--clay);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}

.map-overlay-card p {
  margin: 0.2rem 0 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.map-aside {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.map-aside-img {
  margin: 1.25rem 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: 1;
  min-height: 140px;
}

.map-aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}

/* Forms */
.form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.form-intro .soft {
  max-width: 32em;
}

.studio-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: var(--shadow-soft);
}

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

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.18);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #a33;
  box-shadow: 0 0 0 3px rgba(170, 51, 51, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-success {
  color: #2f5d3a;
}

.form-status.is-error {
  color: #8b2e2e;
}

/* Footer */
.site-footer {
  background: #241a16;
  color: rgba(250, 246, 240, 0.78);
  padding: 3.5rem 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 0.85rem;
  color: var(--paper);
}

.footer-brand .brand-tag {
  color: rgba(250, 246, 240, 0.55);
}

.footer-brand .brand-mark {
  background: rgba(250, 246, 240, 0.1);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 26em;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
  margin: 0 0 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-address a {
  color: rgba(250, 246, 240, 0.85);
  text-decoration: none;
}

.footer-links a:hover,
.footer-address a:hover {
  color: var(--clay-soft);
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer .hours-list li {
  border-bottom-color: rgba(250, 246, 240, 0.1);
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 1.15rem 0;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.45);
}

.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-img img { min-height: 280px; max-height: 360px; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-item.tall {
    grid-row: auto;
  }
  .mosaic-item.tall img { min-height: 240px; }
  .mosaic-item.wide { grid-column: span 2; }
  .cta-band .cta-inner {
    grid-template-columns: 1fr;
  }
  .page-hero,
  .page-hero-wide {
    grid-template-columns: 1fr;
  }
  .page-hero-media {
    max-height: 320px;
  }
  .page-hero-media img {
    max-height: 320px;
  }
  .class-card {
    grid-template-columns: 1fr;
  }
  .class-card-img {
    max-height: 220px;
  }
  .class-card-img img {
    max-height: 220px;
  }
  .info-split {
    grid-template-columns: 1fr;
  }
  .people-grid,
  .info-cards,
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-wrap,
  .map-panel {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .site-nav a.nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.35rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .product-grid,
  .people-grid,
  .info-cards,
  .visit-grid,
  .form-row,
  .class-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .mosaic-item.wide {
    grid-column: auto;
  }

  .timeline::before {
    left: 0.35rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 1.5rem;
  }

  .tl-year {
    text-align: left;
    padding-top: 0;
  }

  .tl-card::before {
    left: -1.42rem;
    top: -1.55rem;
  }

  .hero {
    min-height: min(92vh, 680px);
  }

  .hero-content {
    padding: 3rem 0 2.5rem;
  }

  .band {
    padding: 3rem 0;
  }

  .map-overlay-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 1rem;
  }

  .map-visual > img {
    min-height: 240px;
    max-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}