/* ============================================================
   The Spotted Owl — Paint-Your-Own Pottery, Avondale AZ
   Demo site for Incline Digital Marketing Agency
   Palette: cream base + bright teal, warm coral, sunny yellow
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  /* Brand */
  --teal: #0fb3a8;
  --teal-deep: #0a8d84;
  --teal-soft: #7fe3da;
  --coral: #ff6f59;
  --coral-deep: #e8513b;
  --sun: #ffc145;
  --sun-deep: #e3a322;

  /* Base */
  --cream: #fff7ec;
  --cream-2: #fdeedb;
  --ink: #34322e;
  --charcoal: #20413f;   /* deep teal-charcoal for dark sections */
  --charcoal-2: #1a3837;
  --muted: #7a756c;
  --line: #ecdcc4;

  /* Typography */
  --font-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(32, 65, 63, 0.08);
  --shadow-md: 0 16px 38px rgba(32, 65, 63, 0.14);
  --shadow-lg: 0 30px 64px rgba(32, 65, 63, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1200;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}
.container--narrow { max-width: 780px; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--charcoal); }
.section-lead { color: var(--muted); margin-top: 0.9rem; font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(15, 179, 168, 0.12);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.eyebrow--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255, 111, 89, 0.34); }
.btn--primary:hover { background: var(--coral-deep); box-shadow: 0 12px 26px rgba(255, 111, 89, 0.42); }

.btn--outline { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--ghost { background: transparent; color: var(--charcoal); padding-inline: 0.9rem; }
.btn--ghost:hover { color: var(--coral); }

.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: var(--charcoal-2); }

.btn--light { background: var(--cream); color: var(--charcoal); }
.btn--light:hover { background: #fff; }

/* ============================================================
   Opening animation: paintbrush stroke across a spinning bowl
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 36%, #2a5350, var(--charcoal) 72%);
  overflow: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 193, 69, 0.16), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(255, 111, 89, 0.16), transparent 32%),
    radial-gradient(circle at 70% 82%, rgba(15, 179, 168, 0.20), transparent 36%);
}

.intro__stage {
  position: relative;
  width: 240px;
  height: 240px;
}

.intro__bowl {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
  animation: bowl-spin 2.4s linear 0.1s both;
}
@keyframes bowl-spin {
  0%   { transform: rotate(0deg) scale(0.78); opacity: 0; }
  15%  { opacity: 1; transform: rotate(54deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}
/* paint strokes draw on as the bowl turns */
.intro__paint {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: paint-on 1s var(--ease) 0.5s forwards;
}
.intro__paint--2 { animation-delay: 0.85s; }
@keyframes paint-on { to { stroke-dashoffset: 0; } }

/* brush sweeps across, then lifts away */
.intro__brush {
  position: absolute;
  top: 8px;
  left: -40px;
  transform-origin: top center;
  animation: brush-sweep 1.4s var(--ease) 0.35s forwards;
}
@keyframes brush-sweep {
  0%   { transform: translateX(0) rotate(8deg); opacity: 0; }
  15%  { opacity: 1; }
  60%  { transform: translateX(220px) rotate(-6deg); opacity: 1; }
  100% { transform: translateX(300px) translateY(-30px) rotate(-20deg); opacity: 0; }
}

.intro__reveal {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.85);
  animation: reveal-pop 0.8s var(--ease) 1.55s forwards;
}
@keyframes reveal-pop {
  0%   { opacity: 0; transform: scale(0.7) translateY(14px); }
  60%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.intro__kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 0.4rem;
}
.intro__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 8vw, 3rem);
  color: var(--cream);
  line-height: 1.05;
}
.intro__word em { color: var(--coral); font-style: normal; }
.intro__tag {
  margin-top: 0.5rem;
  color: var(--teal-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.intro__skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 247, 236, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 247, 236, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.intro__skip:hover { background: rgba(255, 247, 236, 0.22); transform: translateY(-1px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 247, 236, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__mark { display: grid; place-items: center; }
.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.brand__accent { color: var(--coral); }

.nav__list { display: flex; gap: 1.5rem; }
.nav__list a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.18s;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.22s var(--ease);
}
.nav__list a:hover { color: var(--coral); }
.nav__list a:hover::after { width: 100%; }

.site-header__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 0.6rem clamp(1.1rem, 4vw, 2rem) 1.2rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav a {
  display: block;
  padding: 0.8rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.btn { border: 2px solid transparent; margin-top: 0.6rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(255, 193, 69, 0.24), transparent 60%),
    radial-gradient(740px 420px at -6% 16%, rgba(15, 179, 168, 0.18), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.splash {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  opacity: 0.5;
  animation: float 7s ease-in-out infinite;
}
.splash.s1 { top: 16%; left: 8%;  width: 26px; height: 24px; background: var(--coral); }
.splash.s2 { top: 70%; left: 13%; width: 18px; height: 20px; background: var(--teal); animation-delay: 1s; }
.splash.s3 { top: 24%; left: 50%; width: 16px; height: 14px; background: var(--sun); animation-delay: 2s; }
.splash.s4 { top: 80%; left: 58%; width: 22px; height: 22px; background: var(--teal-soft); animation-delay: 0.5s; }
.splash.s5 { top: 12%; left: 80%; width: 18px; height: 18px; background: var(--coral); animation-delay: 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(16deg); } }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}
.hero__copy h1 .hl {
  background: linear-gradient(120deg, var(--coral), var(--sun-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--coral);
}
.hero__sub {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.2rem; }
.trust-line {
  font-size: 0.95rem;
  color: var(--teal-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-line::before { content: "●"; color: var(--teal); font-size: 0.7rem; }

/* hero art */
.hero__art { position: relative; }
.pottery-illustration {
  background: linear-gradient(150deg, #fff, var(--cream-2));
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.art-badge {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.art-badge--teal { background: var(--teal); top: 6%; right: -4%; transform: rotate(6deg); }
.art-badge--coral { background: var(--coral); bottom: 4%; left: -6%; transform: rotate(-5deg); }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  color: var(--cream);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.4rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item svg { color: var(--sun); flex: 0 0 auto; }

/* ============================================================
   Services / offerings
   ============================================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(var(--teal), var(--coral));
  opacity: 0;
  transition: opacity 0.22s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--cream-2);
  border-radius: 16px;
  margin-bottom: 0.95rem;
}
.service-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.service-card__head h3 { font-size: 1.24rem; color: var(--charcoal); }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 0.98rem;
  white-space: nowrap;
  background: rgba(15, 179, 168, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}
.service-card p { color: var(--muted); font-size: 0.97rem; }
.services-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.services-note a { color: var(--coral); font-weight: 700; }
.services-note a:hover { text-decoration: underline; }

/* ============================================================
   Why us
   ============================================================ */
.why { background: var(--cream-2); }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(15, 179, 168, 0.12);
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.feature:nth-child(2n) .feature__icon { background: rgba(255, 111, 89, 0.13); color: var(--coral-deep); }
.feature:nth-child(3n) .feature__icon { background: rgba(255, 193, 69, 0.2); color: var(--sun-deep); }
.feature h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   Showcase
   ============================================================ */
.showcase { background: var(--cream); }
.showcase__art {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}
.studio-points {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.studio-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.studio-points .day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 0.98rem;
}
.studio-points .loc { color: var(--muted); font-size: 0.95rem; }
.studio-note {
  text-align: center;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.studio-note a { color: var(--teal-deep); font-weight: 700; }
.studio-note a:hover { text-decoration: underline; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--charcoal); color: var(--cream); }
.reviews .section-head h2 { color: var(--cream); }
.reviews .section-lead { color: rgba(255, 247, 236, 0.72); }
.reviews .eyebrow { color: var(--sun); background: rgba(255, 193, 69, 0.16); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.review {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 247, 236, 0.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
  transition: transform 0.22s var(--ease), border-color 0.22s;
}
.review:hover { transform: translateY(-5px); border-color: var(--sun); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--coral);
  margin-bottom: 0.4rem;
}
.review blockquote { font-size: 1.05rem; color: var(--cream); margin-bottom: 1rem; }
.review figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sun);
}
.review figcaption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 247, 236, 0.62);
  margin-top: 0.15rem;
}
.reviews-disclaimer {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 247, 236, 0.5);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-2); }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--teal); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--coral);
  transition: transform 0.25s var(--ease);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.3rem 1.1rem; color: var(--muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(255, 193, 69, 0.32), transparent 60%),
    linear-gradient(120deg, var(--teal), var(--teal-deep));
  color: #fff;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255, 255, 255, 0.92); font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--cream); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--charcoal); margin-bottom: 0.8rem; }
.contact__info p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.contact-list__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(15, 179, 168, 0.12);
  color: var(--teal-deep);
  flex: 0 0 auto;
}
.contact-list a:hover { color: var(--coral); text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 179, 168, 0.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:invalid:not(:placeholder-shown) { border-color: var(--coral); }

.form-status {
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--teal-deep); }
.form-status.is-error { color: var(--coral-deep); }
.form-fineprint { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--cream); padding-top: 2.8rem; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 247, 236, 0.12);
}
.site-footer .brand__text { color: var(--cream); font-size: 1.5rem; }
.site-footer__brand p { color: rgba(255, 247, 236, 0.66); margin-top: 0.6rem; max-width: 40ch; font-size: 0.95rem; }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__nav a, .site-footer__contact a {
  color: rgba(255, 247, 236, 0.82);
  font-size: 0.96rem;
  transition: color 0.18s;
}
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--sun); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.4rem;
  font-size: 0.9rem;
  color: rgba(255, 247, 236, 0.6);
}
.credit a { color: var(--sun); font-weight: 700; }
.credit a:hover { text-decoration: underline; }

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: none;
  gap: 0.55rem;
  padding: 0.55rem;
  background: rgba(32, 65, 63, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 247, 236, 0.12);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}
.mobile-bar__btn--call { background: var(--teal); }
.mobile-bar__btn--visit { background: var(--coral); }
.mobile-bar__btn:active { transform: scale(0.98); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-inline: auto; order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { padding-bottom: 70px; } /* room for mobile bar */
  .mobile-bar { display: flex; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; text-align: left; gap: 0.9rem 1rem; }
  .trust-item { justify-content: flex-start; }
  .studio-points { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band__actions .btn { flex: 1; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .art-badge--teal { right: 0; }
  .art-badge--coral { left: 0; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .brand__text { font-size: 1.2rem; }
  .intro__skip { bottom: 1.2rem; right: 1.2rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .splash, .pottery-illustration { animation: none; }
  .intro__paint { stroke-dashoffset: 0; }
}
