:root {
  --green: #70866C;
  --bg1: #fff8f1;
  --bg2: #fafcff;
  --ink: #0b1220;
  --muted: #667085;
  --line: #e7edf5;
  --pottery: #e58a72;
  --shadow: 0 12px 36px rgba(16, 24, 40, .08);
  --radius: 18px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Manrope, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, #f3f6ff 0%, #fff0 60%),
    radial-gradient(900px 500px at 110% 10%, #eef4ee 0%, #fff0 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}

/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 30px;
}

@media (min-width: 992px) {
  .navbar {
    min-height: 84px;
  }
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brandclean {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

/* Replace the existing .logo styles with this */
.brandclean .logo {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: conic-gradient(from 0deg, #d4c4a8, #e6d3b7, #c4956c, #d4c4a8);
  border-radius: 50%;
  animation: logoSpin 2.8s linear infinite;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.brandclean .logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #a08970;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.brandclean .brand {
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .1px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  position: relative;
}

.brandclean .brand-light {
  font-weight: 700;
}

.brand-studio-line {
  display: flex;
  align-items: center;
  gap: 0.25ch;
}

.brand-act {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pottery);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: -5px;
}

.brandclean .brand::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  width: 56%;
  background: linear-gradient(90deg,
      rgba(112, 134, 108, 0) 0%,
      rgba(112, 134, 108, .6) 30%,
      rgba(229, 138, 114, .5) 70%,
      rgba(229, 138, 114, 0) 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.nav-link {
  font-weight: 600
}

/* Mobile Navigation */
.navbar-collapse {
  margin-top: 1rem;
}

.navbar-toggler {
  border: 1px solid rgba(112, 134, 108, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(112, 134, 108, 0.25);
  border-color: var(--green);
}

.navbar-toggler[aria-expanded="false"] {
  transform: rotate(0deg) !important;
}

.navbar-toggler[aria-expanded="true"] {
  transform: rotate(90deg) !important;
  border-color: var(--pottery);
  background: rgba(229, 138, 114, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    transform-origin: top center;
  }

  .navbar-collapse.show {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .navbar-collapse.collapsing {
    height: auto !important;
    transform: translateY(-10px) scale(0.98);
    opacity: 0.7;
  }

  .navbar-nav {
    gap: 0 !important;
    margin-left: 0 !important;
  }

  .nav-item {
    border-bottom: 1px solid rgba(231, 237, 245, 0.5);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.2s ease;
  }

  .navbar-collapse.show .nav-item {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }

  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }

  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }

  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }

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

  .nav-link {
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    border-radius: 0;
    position: relative;
    transition: color 0.2s ease;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--pottery);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }

  .nav-link:hover::before {
    width: 20px;
  }

  .nav-link:hover {
    color: var(--pottery);
    background-color: rgba(229, 138, 114, 0.05);
    padding-left: 30px;
    transition: all 0.3s ease;
  }

  .nav-item:has(.btn-green) {
    display: none;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 234, 223, 0.95) 100%);
    margin: 1rem -1rem -1rem -1rem;
    padding: 1rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--line);
    border-top: none;
    position: relative;
  }

  .navbar-collapse.show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pottery), var(--green), var(--pottery));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .brandclean .logo {
    width: 24px;
    height: 24px;
  }
}

@keyframes gradientSlide {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 0%;
  }
}

/* ===== Buttons ===== */
.btn-pill {
  --bs-btn-padding-y: .62rem;
  --bs-btn-padding-x: 1.05rem;
  --bs-btn-font-weight: 800;
  border-radius: 999px;
  letter-spacing: .3px;
}

.btn-green {
  background: linear-gradient(135deg, #7c9277, var(--green), #6a7c65);
  color: #fff !important;
  border: 0;
  box-shadow: 0 10px 22px rgba(112, 134, 108, .22);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.btn-green:hover {
  filter: brightness(1.05);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(112, 134, 108, .3);
  text-decoration: none;
}

.btn-green:focus {
  color: #fff !important;
  text-decoration: none;
  outline: 2px solid rgba(112, 134, 108, 0.4);
  outline-offset: 2px;
}

.btn-green:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(112, 134, 108, .25);
}

.btn-green svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green:hover svg {
  transform: translateX(3px);
}

/* ===== Hero ===== */
.hero {
  padding: clamp(2rem, 6vw, 4.5rem) 0 2vw 0;
  background: linear-gradient(0deg, #F9EFDF 0%, #ffffff 100%);
}

.trust {
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.trust .stars {
  color: #f59e0b;
  letter-spacing: 0.1ch;
  font-size: 0.9rem;
}

.trust strong {
  color: var(--pottery);
  font-weight: 800;
}

.display {
  font-family: "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(2rem, 5.2vw + .4rem, 3.6rem);
  letter-spacing: .2px;
  margin: .25rem 0 1.1rem;
}

.display .pot {
  color: var(--pottery)
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch
}

.cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem
}

.studio {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.studio img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/* Hero Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .trust {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero .display {
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero .lede {
  animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero .cta-row {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero .studio {
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

/* ===== Pottery Classes Section ===== */
.pottery-classes-section {
  padding: 0 0 2vw 0;
  background: linear-gradient(135deg, rgba(248, 244, 240, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.pottery-classes-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2rem 2.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--green);
}

/* Header V2 - Left Bar + Pill Tag */
.header-v2 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.header-v2-bar {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#cbd8cb, #f8c8a2);
  height: 80%;
  min-height: 70px;
  justify-self: center;
}

.header-v2-main {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.header-v2-toprow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.header-v2-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #794b35;
  background: #fce4d2;
  border-radius: 999px;
  padding: 0.22rem 0.8rem;
}

.header-v2-title {
  font-size: 2rem;
  margin: 0;
  line-height: 1.2;
}

.header-v2-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.96rem;
  color: #7b736d;
  max-width: 640px;
}

@media (max-width: 720px) {
  .header-v2-title {
    font-size: 1.7rem;
  }
}

/* ===== Pottery Classes Section (Hero Panel) ===== */
.section-shell {
  padding: 2vw 0;
}

.hero-panel {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.8rem 2.3rem;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(215, 208, 198, 0.8);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 6px;
  background: linear-gradient(90deg, #e79663, #e3b96a);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: stretch;
}

/* LEFT SIDE */

.hero-copy-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #b28154;
  margin-bottom: 0.75rem;
}

.hero-copy-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.hero-copy-title span {
  display: inline-block;
}

.hero-underline {
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e79663, #4e775f);
  margin-bottom: 1.6rem;
}

.hero-copy-lede {
  font-size: 1rem;
  line-height: 1.7;
  color: #5c5a57;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.hero-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.98rem;
}

.hero-bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffeae0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #d47b52;
  box-shadow: 0 4px 10px rgba(212, 123, 82, 0.25);
}

/* RIGHT: Timeline Card */

.booking-card {
  max-width: 460px;
  width: 100%;
  font-family: inherit;
}

.booking-card.variant-9 {
  border-radius: 22px;
  background: #fcfdfc;
  border: 1px solid #dde3df;
  padding: 1.7rem 1.9rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.booking-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6a846b;
}

.booking-title {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  color: #202522;
}

.variant-9-steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.variant-9-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4a544e;
}

.variant-9-step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #c5d1c9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4c6e57;
  background: #f4f7f5;
  margin-top: 0.1rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.booking-btn {
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.booking-btn.primary {
  background: #304b3b;
  color: #f6fbf7;
  box-shadow: 0 12px 30px rgba(48, 75, 59, 0.35);
}

.booking-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(48, 75, 59, 0.45);
}

.booking-btn.ghost {
  background: transparent;
  border-radius: 14px;
  border: 1px solid #ccd6d0;
  color: #304b3b;
}

.booking-btn.ghost:hover {
  background: #f4f7f5;
}

/* Bottom reassurance strip */

.booking-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e3e8e4;
  font-size: 0.82rem;
  color: #7b8580;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}

.booking-meta span {
  position: relative;
  padding-left: 0.9rem;
  white-space: nowrap;
}

.booking-meta span::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 960px) {
  .hero-panel {
    padding: 2.3rem 1.9rem;
  }

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

  .booking-card.variant-9 {
    height: auto;
  }

  .booking-meta {
    margin-top: 0.8rem;
  }
}

@media (max-width: 640px) {
  .hero-copy-title {
    font-size: 2rem;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-btn {
    width: 100%;
  }

  .booking-meta {
    justify-content: flex-start;
  }

  .hero-panel {
    padding: 1.8rem 1.4rem 2rem;
    border-radius: 22px;
  }

  .pottery-classes-wrapper {
    padding: 1.4rem 1.3rem 1.6rem;
    border-radius: 22px;
  }
}

.btn-outline-dark {
  border: 1px solid #0b1220;
  color: #0b1220;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  background: #0b1220;
  color: #fff;
}

.btn-outline-pottery {
  border: 2px solid var(--pottery);
  color: var(--pottery);
  background: rgba(229, 138, 114, 0.05);
  font-weight: 600;
  transition: all 0.2s ease;
  /* Improve focus styles for accessibility */
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.btn-outline-pottery:hover {
  background: var(--pottery);
  color: #fff !important;
  border-color: var(--pottery);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 138, 114, 0.3);
  text-decoration: none;
}

.btn-outline-pottery:focus-visible {
  outline: 2px solid var(--pottery);
  outline-offset: 2px;
}

.btn-outline-pottery:active {
  transform: translateY(0);
}

.btn-outline-pottery svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-pottery:hover svg {
  transform: translateY(2px);
}

/* Improve contrast for better accessibility */
.btn-outline-pottery {
  color: var(--pottery);
  border-color: var(--pottery);
}

.btn-outline-pottery:hover {
  background: var(--pottery);
  color: white;
}

.btn-outline-pottery svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-pottery:hover svg {
  transform: translateY(2px);
}

.pottery-classes-container {
  position: relative;
}

.scroll-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.scroll-info {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: var(--muted);
  font-weight: 500;
}

.scroll-buttons {
  display: flex;
  gap: 0.75rem;
}

.scroll-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  box-shadow: 0 8px 12px rgba(31, 76, 135, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
}

.scroll-btn:hover {
  background: rgba(112, 134, 108, 0.05);
  border-color: var(--green);
  transform: translateY(-1px);
  color: var(--green);
}

.scroll-btn:active {
  transform: translateY(0);
}

.scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.scroll-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.scroll-controls + .pottery-classes-scroll {
  cursor: grab;
}

.pottery-classes-container {
  position: relative;
  padding-bottom: 0.75rem;
}

.pottery-classes-container::before,
.pottery-classes-container::after {
  content: '';
  position: absolute;
  top: 68px;
  bottom: 58px;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.pottery-classes-container.is-at-start::before,
.pottery-classes-container.is-at-end::after {
  opacity: 0;
}

.pottery-classes-container::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0));
}

.pottery-classes-container::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0));
}

.pottery-classes-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 2rem;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--pottery) var(--line);
  scroll-snap-type: x mandatory;
}

.pottery-classes-scroll:active {
  cursor: grabbing;
}

.pottery-scroll-progress {
  position: relative;
  margin: 0 auto;
  margin-top: -1.5rem;
  width: min(220px, 60%);
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.pottery-scroll-progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--pottery));
  transition: width 0.35s ease;
}

.pottery-classes-scroll::-webkit-scrollbar {
  height: 12px;
}

.pottery-classes-scroll::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 6px;
  margin: 0 1rem;
}

.pottery-classes-scroll::-webkit-scrollbar-thumb {
  background: var(--pottery);
  border-radius: 6px;
  border: 2px solid var(--line);
  transition: background 0.2s ease;
}

.pottery-classes-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}


/* Force scrollbar to always show on desktop */
@media (min-width: 768px) {
  .pottery-classes-scroll {
    overflow-x: scroll !important; /* Force scrollbar to always show */
    scrollbar-width: thin;
    scrollbar-color: #70C1B3 rgba(112, 193, 179, 0.12);
  }

  .pottery-classes-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    display: block !important;
  }
}

/* Hide scrollbar on mobile */
@media (max-width: 767px) {
  .pottery-classes-scroll::-webkit-scrollbar {
    display: none;
  }

  .pottery-classes-scroll {
    scrollbar-width: none;
  }
}

/* Pottery Card Base Styles */
.pottery-card {
  flex: 0 0 clamp(280px, 25vw, 340px);
  height: clamp(480px, 50vh, 540px);
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
}

/* Only apply hover effects on devices with true hover capability (mouse/trackpad) */
@media (hover: hover) and (pointer: fine) {
  .pottery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
}

.pottery-card:focus-within {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.pottery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
}

.pottery-header {
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.5);
  flex-shrink: 0;
}

.pottery-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
}

.pottery-content {
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.pottery-content::-webkit-scrollbar {
  width: 6px;
}

.pottery-content::-webkit-scrollbar-track {
  background: transparent;
}

.pottery-content::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.pottery-content::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.pottery-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

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

.pottery-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink);
}

.pottery-features li::before {
  content: "✓";
  font-weight: 700;
  width: clamp(12px, 2vw, 14px);
  height: clamp(12px, 2vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pottery-pricing {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: white;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-shrink: 0;
}

.pottery-pricing-box {
  flex: 1;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 12px;
  text-align: center;
  min-height: clamp(60px, 12vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.pottery-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  margin-bottom: 0.25rem;
}

.pottery-price {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1;
}

.pottery-price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 500;
}

.pottery-price-label {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  color: rgba(31, 29, 29, 0.6);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pottery-badge {
  background: var(--pottery);
  color: white;
  padding: clamp(0.2rem, 1vw, 0.3rem) clamp(0.4rem, 1.5vw, 0.6rem);
  border-radius: clamp(12px, 2vw, 16px);
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

@media (max-width: 991px) {
  .scroll-buttons {
    display: none;
  }
  .pottery-classes-container::before,
  .pottery-classes-container::after {
    opacity: 0;
  }
  .pottery-card {
    flex: 0 0 clamp(250px, 75vw, 320px);
  }
}

@media (max-width: 576px) {
  .pottery-classes-scroll {
    gap: 0.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .pottery-scroll-progress {
    margin-top: -1rem;
  }
}

.pottery-badge-popular {
  background: linear-gradient(135deg, #10B981, #34D399);
}

/* Pottery Card Color Variants */
.pottery-purple::before {
  background: #4338ca;
}

.pottery-purple .pottery-title {
  color: #4338ca;
}

.pottery-purple .pottery-features li::before {
  background: rgba(67, 56, 202, 0.1);
  color: #4338ca;
}

.pottery-purple .pottery-pricing-box {
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.2);
}

.pottery-purple .pottery-price {
  color: #4338ca;
}

.pottery-green::before {
  background: var(--green);
}

.pottery-green .pottery-title {
  color: var(--green);
}

.pottery-green .pottery-features li::before {
  background: rgba(112, 134, 108, 0.1);
  color: var(--green);
}

.pottery-green .pottery-pricing-box {
  background: rgba(112, 134, 108, 0.08);
  border: 1px solid rgba(112, 134, 108, 0.2);
}

.pottery-green .pottery-price {
  color: var(--green);
}

.pottery-teal::before {
  background: #10b981;
}

.pottery-teal .pottery-title {
  color: #10b981;
}

.pottery-teal .pottery-features li::before {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.pottery-teal .pottery-pricing-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pottery-teal .pottery-price {
  color: #10b981;
}

.pottery-red::before {
  background: #dc2626;
}

.pottery-red .pottery-title {
  color: #dc2626;
}

.pottery-red .pottery-features li::before {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.pottery-red .pottery-pricing-box {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.pottery-red .pottery-price {
  color: #dc2626;
}

.pottery-orange::before {
  background: var(--pottery);
}

.pottery-orange .pottery-title {
  color: var(--pottery);
}

.pottery-orange .pottery-features li::before {
  background: rgba(229, 138, 114, 0.1);
  color: var(--pottery);
}

.pottery-orange .pottery-pricing-box {
  background: rgba(229, 138, 114, 0.08);
  border: 1px solid rgba(229, 138, 114, 0.2);
}

.pottery-orange .pottery-price {
  color: var(--pottery);
}

.pottery-halloween::before {
  background: linear-gradient(90deg, #D97706, #F59E0B);
}

.pottery-halloween .pottery-title {
  color: #D97706;
}

.pottery-halloween .pottery-features li::before {
  background: rgba(217, 119, 6, 0.1);
  color: #D97706;
}

.pottery-halloween .pottery-pricing-box {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.pottery-halloween .pottery-price {
  color: #D97706;
}

.pottery-halloween .pottery-badge {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Sip, Paint & Create - Purple/Magenta Theme */
.pottery-sip-paint::before {
  background: linear-gradient(90deg, #a21caf, #d946ef);
}

.pottery-sip-paint .pottery-title {
  color: #a21caf;
}

.pottery-sip-paint .pottery-features li::before {
  background: rgba(162, 28, 175, 0.1);
  color: #a21caf;
}

.pottery-sip-paint .pottery-pricing-box {
  background: linear-gradient(135deg, rgba(162, 28, 175, 0.1), rgba(217, 70, 239, 0.08));
  border: 1px solid rgba(162, 28, 175, 0.3);
}

.pottery-sip-paint .pottery-price {
  color: #a21caf;
}

.pottery-sip-paint .pottery-badge {
  background: linear-gradient(135deg, #a21caf, #d946ef);
  color: white;
  box-shadow: 0 4px 12px rgba(162, 28, 175, 0.3);
}

.pottery-sip-paint:hover {
  border-color: #a21caf;
}

/* Pottery Through Time Card - Turquoise/Cyan Theme */
.pottery-timetravel::before {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

.pottery-timetravel .pottery-title {
  color: #0891b2;
}

.pottery-timetravel .pottery-features li::before {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}

.pottery-timetravel .pottery-pricing-box {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(8, 145, 178, 0.3);
}

.pottery-timetravel .pottery-price {
  color: #0891b2;
}

.pottery-timetravel .pottery-badge {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
  color: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.pottery-timetravel:hover {
  border-color: #0891b2;
}

/* Aqua/Turquoise color scheme for Free Style Hand Building */
.pottery-aqua::before {
  background: linear-gradient(90deg, #22C2C3, #4DD4D5);
}

.pottery-aqua .pottery-title {
  color: #22C2C3;
}

.pottery-aqua .pottery-features li::before {
  background: rgba(34, 194, 195, 0.1);
  color: #22C2C3;
}

.pottery-aqua .pottery-pricing-box {
  background: linear-gradient(135deg, rgba(34, 194, 195, 0.1), rgba(77, 212, 213, 0.08));
  border: 1px solid rgba(34, 194, 195, 0.3);
}

.pottery-aqua .pottery-price {
  color: #22C2C3;
}

.pottery-blue::before {
  background: #2563eb;
}

.pottery-blue .pottery-title {
  color: #2563eb;
}

.pottery-blue .pottery-features li::before {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.pottery-blue .pottery-pricing-box {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pottery-blue .pottery-price {
  color: #2563eb;
}

.pottery-yellow::before {
  background: #eab308;
}

.pottery-yellow .pottery-title {
  color: #eab308;
}

.pottery-yellow .pottery-features li::before {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.pottery-yellow .pottery-pricing-box {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.pottery-yellow .pottery-price {
  color: #eab308;
}

.pottery-grey::before {
  background: #6b7280;
}

.pottery-grey .pottery-title {
  color: #6b7280;
}

.pottery-grey .pottery-features li::before {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

.pottery-grey .pottery-pricing-box {
  background: rgba(107, 114, 128, 0.08);
  border: 1px solid rgba(107, 114, 128, 0.2);
}

.pottery-grey .pottery-price {
  color: #6b7280;
}

.pottery-brown::before {
  background: #8b4513;
}

.pottery-brown .pottery-title {
  color: #8b4513;
}

.pottery-brown .pottery-features li::before {
  background: rgba(139, 69, 19, 0.1);
  color: #8b4513;
}

.pottery-brown .pottery-pricing-box {
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.pottery-brown .pottery-price {
  color: #8b4513;
}

.pottery-violet::before {
  background: #8b5cf6;
}

.pottery-violet .pottery-title {
  color: #8b5cf6;
}

.pottery-violet .pottery-features li::before {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.pottery-violet .pottery-pricing-box {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.pottery-violet .pottery-price {
  color: #8b5cf6;
}

.pottery-cyan::before {
  background: #0891b2;
}

.pottery-cyan .pottery-title {
  color: #0891b2;
}

.pottery-cyan .pottery-features li::before {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}

.pottery-cyan .pottery-pricing-box {
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.2);
}

.pottery-cyan .pottery-price {
  color: #0891b2;
}

.pottery-turquoise::before {
  background: #06b6d4;
}

.pottery-turquoise .pottery-title {
  color: #06b6d4;
}

.pottery-turquoise .pottery-features li::before {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.pottery-turquoise .pottery-pricing-box {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.pottery-turquoise .pottery-price {
  color: #06b6d4;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed rgba(112, 134, 108, 0.3);
}

/* ===== Clay & Firing Services Section ===== */
.services-section {
  padding: 0;
}

.services-container {
  border-radius: 28px;
  padding: 1.8rem 2.3rem 2rem;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border: 1px solid #e4ddd5;
}

.services-section .header-v2 {
  margin-bottom: 1.4rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.services-main {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.services-block-title {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.services-block-subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  color: #7a7570;
}

/* Price list base */

.price-list {
  margin: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid #eee3d8;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

/* Alternating row background */
.price-row:nth-child(odd) {
  background: #fdf8f3;
}
.price-row:nth-child(even) {
  background: #ffffff;
}

.price-row dt {
  margin: 0;
}

.price-row dd {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.price-row-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: #8c8680;
  margin-top: 0.1rem;
}

/* Right side column */

.services-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.6rem;
  position: relative;
}

/* Vertical accent strip */
.services-side::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(#d0e4d7,#f6d7ba);
}

.side-card {
  border-radius: 18px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
}

.side-card.quick-info {
  background: #fbf6f1;
  border: 1px solid #f1e1d3;
}

.side-card.two-ways {
  background: #f4f7f4;
  border: 1px solid #dde7e0;
}

.side-card-title {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
}

.side-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.2rem 0;
}

.side-check {
  font-size: 1rem;
  line-height: 1.3;
}

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

.two-ways-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 0.8rem;
  align-items: flex-start;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  font-size: 0.86rem;
  background: #ffffff;
  border: 1px solid #e3ebe6;
}

.two-ways-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #b1c5b7;
  background: #ecf3ee;
  color: #39543f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.two-ways-heading {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.services-footer {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(209,199,189,0.7);
  font-size: 0.82rem;
  color: #7b746e;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.footer-contact-highlight {
  font-weight: 600;
}

.footer-button {
  border-radius: 999px;
  border: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #e3936b;
  color: #fff;
  box-shadow: 0 10px 25px rgba(227,147,107,0.4);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(227,147,107,0.5);
}

.footer-button span {
  font-size: 1rem;
  transform: translateY(1px);
}

/* Responsive */

@media (max-width: 880px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-side {
    padding-left: 0;
  }
  .services-side::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-container {
    padding: 1.4rem 1.3rem 1.6rem;
    border-radius: 22px;
  }
  .services-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hover Effects for Desktop */
@media (min-width: 769px) {
  .clay-firing-wrapper:hover {
    box-shadow: 0 20px 40px rgba(229, 138, 114, 0.15);
  }
}

/* Print Styles */
@media print {
  .clay-firing-wrapper {
    border: 1px solid #000;
    box-shadow: none;
  }
  
  .clay-firing-wrapper .header-banner {
    background: none;
    color: black;
    border-bottom: 2px solid black;
  }
  
  .clay-firing-wrapper .cta-card {
    display: none;
  }
}

/* ===== Holiday Schedule Section ===== */
.holiday-schedule-section {
  padding: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  background: linear-gradient(135deg, rgba(248, 244, 240, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.schedule-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--pottery);
}

.schedule-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.price-highlight::after {
  content: '✨';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.schedule-title {
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  position: relative;
}

.schedule-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pottery), var(--green));
  border-radius: 2px;
}

.schedule-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.schedule-slider-container {
  position: relative;
  margin: 2rem 0;
}

.schedule-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0.5rem 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.schedule-slider::-webkit-scrollbar {
  height: 8px;
}

.schedule-slider::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.schedule-slider::-webkit-scrollbar-thumb {
  background: var(--pottery);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.schedule-slider::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* Day Cards */
.day-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  border-top: 4px solid #8B4513;
}

.day-card:nth-child(1) {
  border-top-color: #8B4513;
}

.day-card:nth-child(2) {
  border-top-color: #CD853F;
}

.day-card:nth-child(3) {
  border-top-color: #DAA520;
}

.day-card:nth-child(4) {
  border-top-color: #556B2F;
}

.day-card:nth-child(5) {
  border-top-color: #4682B4;
}

.day-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.day-card:nth-child(1):hover {
  border-color: #8B4513;
}

.day-card:nth-child(2):hover {
  border-color: #CD853F;
}

.day-card:nth-child(3):hover {
  border-color: #DAA520;
}

.day-card:nth-child(4):hover {
  border-color: #556B2F;
}

.day-card:nth-child(5):hover {
  border-color: #4682B4;
}

.day-name {
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  color: var(--ink);
}

.day-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  border-radius: 2px;
  background: var(--pottery);
}

.class-slot {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #8B7355;
}

.day-card:nth-child(1) .class-slot {
  border-left-color: #8B4513;
}

.day-card:nth-child(2) .class-slot {
  border-left-color: #CD853F;
}

.day-card:nth-child(3) .class-slot {
  border-left-color: #DAA520;
}

.day-card:nth-child(4) .class-slot {
  border-left-color: #556B2F;
}

.day-card:nth-child(5) .class-slot {
  border-left-color: #4682B4;
}

.class-slot:hover {
  transform: translateX(4px);
  border-color: var(--pottery);
  box-shadow: 0 4px 12px rgba(229, 138, 114, 0.2);
}

.class-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pottery);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.class-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--pottery);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-indicator:hover {
  background: var(--pottery);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.scroll-left {
  left: -20px;
}

.scroll-right {
  right: -20px;
}

.schedule-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed rgba(229, 138, 114, 0.3);
}

/* Animation for initial load */
.day-card {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.day-card:nth-child(1) {
  animation-delay: 0.1s;
}

.day-card:nth-child(2) {
  animation-delay: 0.2s;
}

.day-card:nth-child(3) {
  animation-delay: 0.3s;
}

.day-card:nth-child(4) {
  animation-delay: 0.4s;
}

.day-card:nth-child(5) {
  animation-delay: 0.5s;
}

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

/* ===== Footer Redesign ===== */
.site-footer {
  background: linear-gradient(180deg,
    rgba(248, 244, 240, 0.3) 0%,
    rgba(248, 244, 240, 0.5) 100%
  );
  padding: 2vw 0 2rem 0;
}

.footer-shell {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.1rem 2.3rem 2.4rem;
  box-shadow:
    0 18px 55px rgba(0,0,0,0.08),
    0 0 0 1px rgba(214,206,194,0.7);
}

/* ========= CTA BAR – VARIANT A ========= */

.footer-cta-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-radius: 20px;
  margin-bottom: 1.9rem;

  background: linear-gradient(95deg, #f7e3d1, #faefe5 30%, #f1e2cf);
  border: 1px solid rgba(200,160,130,0.30);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.06),
    inset 0 0 25px rgba(255,255,255,0.55);
}

.footer-cta-main {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.footer-cta-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  width: fit-content;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(205,150,110,0.5);
  color: #a35c37;
}

.footer-cta-text { min-width: 0; }

.footer-cta-heading {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #242428;
}

.footer-cta-sub {
  margin: 0.25rem 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #555a62;
}

.footer-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.78rem;
}

.footer-cta-tag {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  border-width: 1px;
  border-style: solid;

  background: #fffdfa;
  border-color: rgba(220,170,140,0.7);
  color: #6a5a45;
}

.footer-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: 0;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: transform 0.06s ease, box-shadow 0.06s ease;
  text-decoration: none;
}

.btn-primary {
  background: #d57a52;
  color: #fff;
  box-shadow: 0 12px 30px rgba(210,110,70,0.45);
}

.btn-secondary {
  background: #fff7f0;
  color: #a05933;
  border: 1px solid rgba(225,160,112,0.9);
  box-shadow: 0 8px 18px rgba(232,171,120,0.35);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  color: currentColor;
  text-decoration: none;
}

.btn-primary:hover {
  color: #fff;
}

.btn-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.icon-pin {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========= INFO GRID ========= */

.footer-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 1.9rem;
  font-size: 0.92rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: #c56737;
}

.footer-about-text {
  margin: 0;
  color: #6a707b;
  line-height: 1.7;
}

.footer-social-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  border: 1px solid #f0d2c1;
  background: #fdf3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #cf7e4a;
  cursor: pointer;
  transition: background 0.1s ease, transform 0.06s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: #ffe7d6;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Find us chips */

.footer-contact-chips {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f9f3ed;
  color: #6a707b;
  text-decoration: none;
}

.footer-contact-chip:hover {
  text-decoration: none;
  background: #f0e7dd;
}

.footer-contact-chip--primary {
  background: #fbe9dd;
  color: #444b55;
  font-weight: 500;
}

.footer-contact-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f8dcc7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #c15f33;
  flex-shrink: 0;
}

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

.footer-link-list li + li {
  margin-top: 0.45rem;
}

.footer-link-list a {
  text-decoration: none;
  color: #1b2128;
}

.footer-link-list a:hover {
  text-decoration: underline;
}

.footer-link-caption {
  display: block;
  font-size: 0.8rem;
  color: #6a707b;
  margin-top: 0.05rem;
}

/* ========= META ========= */

.footer-meta {
  border-top: 1px solid #e0dad2;
  margin-top: 1.7rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #6a707b;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.footer-meta a {
  color: #E58A72;
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* ========= MOBILE CENTERING ========= */

@media (max-width: 640px) {

  .footer-shell {
    border-radius: 22px;
    padding: 1.8rem 1.4rem 2rem;
  }

  .footer-cta-bar {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-cta-main {
    align-items: center;
  }

  .footer-cta-kicker {
    margin: 0 auto;
  }

  .footer-cta-tags {
    justify-content: center;
  }

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

  .footer-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-contact-chips {
    align-items: center;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Media Queries ===== */
@media (max-width: 768px) {
  .schedule-wrapper {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .day-card {
    flex: 0 0 260px;
    padding: 1.25rem;
  }

  .day-name {
    font-size: 1.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .pottery-classes-scroll {
    gap: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 768px) {
  .scroll-buttons {
    display: flex;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  
  /* Remove hero entrance animations */
  .hero .trust,
  .hero .display,
  .hero .lede,
  .hero .cta-row,
  .hero .studio {
    animation: none !important;
  }

  /* Remove pottery class card entrance animations */
  .day-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable logo spinning animation */
  .brandclean .logo {
    animation: none !important;
  }

  /* Remove gradient animations */
  .brandclean .brand::after {
    animation: none !important;
  }

  

  .navbar-collapse.show::before {
  animation: none !important;
}

.navbar-collapse.show::before {
  animation: none !important;
}

  /* Remove text pulse animation */
  .appointment-link {
    animation: none !important;
  }

  /* Remove button pulse animation */
  .directions-btn {
    animation: none !important;
  }

  /* Reduce hover and focus transitions to very fast */
  .pottery-card,
  .day-card,
  .contact-item,
  .social-links a,
  .btn-green,
  .scroll-btn,
  .nav-link {
    transition: color 0.1s ease, background-color 0.1s ease, border-color 0.1s ease !important;
  }

  /* Keep essential smooth scrolling but make it faster */
  .schedule-slider,
  .pottery-classes-scroll {
    scroll-behavior: smooth; /* Keep this for usability */
  }

  /* Disable transform animations on hover/interaction */
  .pottery-card:hover,
  .day-card:hover {
    transform: none !important;
  }

  .btn-green:hover {
    transform: none !important;
  }

  .btn-green:hover svg {
    transform: none !important;
  }

  .social-links a:hover {
    transform: none !important;
  }

  /* Keep box-shadow changes but remove transform */
  .pottery-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  /* Disable mobile navigation animations */
  .navbar-collapse {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .navbar-collapse.show {
    transform: none !important;
    opacity: 1 !important;
  }

  .navbar-collapse.collapsing {
    transform: none !important;
    opacity: 1 !important;
  }

  .nav-item {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .navbar-collapse.show .nav-item {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ===== Additional Motion Controls ===== */

/* Provide a toggle for users who want to disable specific animations */
.motion-safe {
}

/* Focus indicators that don't rely on motion */
@media (prefers-reduced-motion: reduce) {
  *:focus-visible {
    outline: 3px solid var(--pottery) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 5px rgba(229, 138, 114, 0.2) !important;
  }
}

/* Ensure important interactive feedback is still visible */
@media (prefers-reduced-motion: reduce) {
  .pottery-card:hover,
  .day-card:hover {
    border-color: var(--pottery) !important;
    background: rgba(229, 138, 114, 0.02) !important;
  }

  .btn-green:hover {
    filter: brightness(1.1) !important;
  }

  .class-name:hover {
    background: rgba(229, 138, 114, 0.1) !important;
    color: var(--pottery) !important;
  }
}

/* ===== Flyer Modal ===== */
.flyer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.flyer-modal:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.flyer-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.flyer-modal-container {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyer-modal-content {
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--pottery);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 900px;
  width: 100%;
  position: relative;
}

.flyer-modal:not([hidden]) .flyer-modal-content {
  transform: scale(1);
}

.flyer-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: white;
  border: 2px solid var(--pottery);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--pottery);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flyer-modal-close:hover {
  background: var(--pottery);
  color: white;
  transform: rotate(90deg);
}

.flyer-modal-close:focus {
  outline: 2px solid rgba(229, 138, 114, 0.4);
  outline-offset: 2px;
}

.flyer-modal-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 2px solid var(--line);
  background: linear-gradient(135deg, rgba(229, 138, 114, 0.05), rgba(229, 138, 114, 0.02));
  position: relative;
}

.flyer-modal-header h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  padding-right: 3rem;
}

.flyer-modal-counter {
  background: var(--pottery);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.flyer-modal-body {
  position: relative;
  background: #f8f9fa;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyer-modal-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: contain;
}

.flyer-modal-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyer-modal-nav {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: white;
  border-top: 1px solid var(--line);
}

.flyer-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 2px solid var(--green);
  border-radius: 12px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(112, 134, 108, 0.1);
  touch-action: manipulation; /* Prevent double-tap zoom on mobile */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
  user-select: none; /* Prevent text selection on rapid taps */
}

.flyer-nav-btn:hover {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(112, 134, 108, 0.2);
}

.flyer-nav-btn:active {
  transform: translateY(0);
}

.flyer-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.flyer-nav-btn:focus {
  outline: 2px solid rgba(112, 134, 108, 0.4);
  outline-offset: 2px;
}

.flyer-nav-btn svg {
  flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .flyer-modal-container {
    max-width: 95vw;
    max-height: 95vh;
  }

  .flyer-modal-content {
    max-width: 100%;
    border-radius: 16px;
  }

  .flyer-modal-close {
    width: 40px;
    height: 40px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .flyer-modal-header {
    padding: 1rem 1rem 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .flyer-modal-header h2 {
    font-size: 1.25rem;
  }

  .flyer-modal-nav {
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
  }

  .flyer-nav-btn {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .flyer-nav-btn span {
    display: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .flyer-modal {
    transition: none;
  }

  .flyer-modal-content {
    transition: none;
  }

  .flyer-modal-close:hover {
    transform: none;
  }
}

/* ============================================
   POTTERY CARD - HEX COLOR SYSTEM
   ============================================
   Uses CSS variable --card-color set inline on each card
   Replaces old color-name-based classes
*/

.pottery-card::before {
  background: var(--card-color, #70C1B3);
}

.pottery-card .pottery-title {
  color: var(--card-color, #70C1B3);
}

.pottery-card .pottery-features li::before {
  background: color-mix(in srgb, var(--card-color, #70C1B3) 10%, transparent);
}

.pottery-card .pottery-pricing-box {
  background: color-mix(in srgb, var(--card-color, #70C1B3) 8%, transparent);
}

.pottery-card .pottery-price {
  color: var(--card-color, #70C1B3);
}

/* Fallback for browsers that don't support color-mix */
@supports not (background: color-mix(in srgb, red, blue)) {
  .pottery-card .pottery-features li::before {
    background: rgba(112, 193, 179, 0.1);
  }
  
  .pottery-card .pottery-pricing-box {
    background: rgba(112, 193, 179, 0.08);
  }
}
