/* ===== Impetusy — Pottery Kiln & Ceramic Workshop Theme ===== */
/* PORCELAIN-BONE body / KILN-TEAL accent / GLAZE-AMBER secondary */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #33383C;
  background-color: #F5F3ED;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: #1F5C5A; text-decoration: none; }
a:hover { color: #C08A3E; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== KILN-BRICK NAV ===================== */
.kiln-brick-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FCFAF4;
}

.kiln-brick-nav .brick-course {
  height: 22px;
  background-image: repeating-linear-gradient(
    90deg,
    #9C5B3C 0, #9C5B3C 34px,
    #F5F3ED 34px, #F5F3ED 40px
  );
  background-color: #9C5B3C;
}

.kiln-brick-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 78px;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fire-mouth {
  width: 26px;
  height: 30px;
  border: 3px solid #1F5C5A;
  border-radius: 13px 13px 4px 4px;
  border-bottom-width: 3px;
  position: relative;
  background-color: #FCFAF4;
}

.fire-mouth::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 13px solid #C08A3E;
}

.nav-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1F5C5A;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #33383C;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: #1F5C5A;
  border-bottom-color: #1F5C5A;
}

.nav-dot {
  width: 6px;
  height: 6px;
  background-color: #C08A3E;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #1F5C5A;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: #FCFAF4;
    border-bottom: 1px solid #DFDACB;
    padding: 0 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid #DFDACB; }
  .nav-dot { display: none; }
  .kiln-brick-nav .nav-row { height: auto; padding: 16px 24px; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #1F5C5A;
  color: #FCFAF4;
  border-color: #1F5C5A;
}

.btn-primary:hover { background-color: #18484A; color: #FCFAF4; border-color: #18484A; }

.btn-outline {
  background-color: transparent;
  color: #C08A3E;
  border-color: #C08A3E;
}

.btn-outline:hover { background-color: #C08A3E; color: #FCFAF4; }

/* ===================== WHEEL-THROWING HERO ===================== */
.wheel-throwing-hero {
  background-color: #F5F3ED;
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-chip {
  display: inline-block;
  background-color: #1F5C5A;
  color: #FCFAF4;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero-headline {
  font-size: 48px;
  line-height: 1.12;
  color: #33383C;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-headline .shaped {
  color: #1F5C5A;
}

.hero-subcopy {
  font-size: 18px;
  color: #8B8F8A;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Pottery Wheel Panel */
.wheel-panel {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  padding: 34px 24px;
  position: relative;
  min-height: 360px;
}

.wheel-groove {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 8px;
  border-left: 1px solid #DFDACB;
  border-right: 1px solid #DFDACB;
}

.shelf-wall {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 150px;
}

.shelf-bracket {
  height: 5px;
  background-color: #C08A3E;
  position: relative;
  margin-bottom: 12px;
}

.shelf-bracket::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #C08A3E;
}

.bowls-on-shelf {
  display: flex;
  gap: 8px;
  padding-left: 10px;
}

.bowl-teal {
  width: 34px;
  height: 16px;
  background-color: #1F5C5A;
  border-radius: 0 0 18px 18px;
}

.bowl-amber {
  width: 26px;
  height: 12px;
  background-color: #C08A3E;
  border-radius: 0 0 14px 14px;
}

.potter-wheel {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
}

.wheel-drum {
  width: 150px;
  height: 22px;
  background-color: #33383C;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
}

.wheel-drum::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FCFAF4 0 30%, transparent 30% 40%, #FCFAF4 40% 70%, transparent 70% 80%, #FCFAF4 80%);
}

.wheel-pedestal {
  width: 26px;
  height: 46px;
  background-color: #8B8F8A;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

.wheel-base {
  width: 60px;
  height: 10px;
  background-color: #33383C;
  margin: 0 auto;
  border-radius: 4px;
}

.spinning-vase {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 120px;
  background-color: #1F5C5A;
  border-radius: 10px 10px 32px 32px;
  position: relative;
}

.spinning-vase::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 22px;
  border: 3px solid #FCFAF4;
  border-radius: 3px;
  background-color: #FCFAF4;
}

.motion-arc {
  position: absolute;
  bottom: 110px;
  width: 42px;
  height: 30px;
  border: 3px solid #C08A3E;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.motion-arc.left { left: 16px; }
.motion-arc.right { right: 16px; transform: scaleX(-1); }

.stool {
  position: absolute;
  bottom: 40px;
  right: 34px;
  width: 36px;
  height: 26px;
  background-color: #8B8F8A;
  border-radius: 3px;
  display: flex;
  justify-content: center;
}

.stool::after {
  content: "";
  width: 4px;
  height: 26px;
  background-color: #6B4A32;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .wheel-panel { min-height: 300px; }
}

/* ===================== GLAZE-RACK ===================== */
.glaze-rack {
  background-color: #F5F3ED;
  padding: 64px 0 40px;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head .kicker {
  display: inline-block;
  color: #C08A3E;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 36px;
  color: #1F5C5A;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-head p {
  color: #8B8F8A;
  max-width: 680px;
  margin: 0 auto;
}

.rack-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rack-row {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 110px 1fr 90px;
  gap: 20px;
  align-items: center;
  padding: 28px 26px;
  box-shadow: 0 2px 6px #DFDACB;
}

.bottle-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle {
  width: 34px;
  height: 70px;
  border-radius: 6px 6px 3px 3px;
  position: relative;
}

.bottle::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 17px;
  border-radius: 3px 3px 2px 2px;
  background-color: inherit;
}

.bottle::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FCFAF4;
}

.bottle-teal { background-color: #1F5C5A; }
.bottle-amber { background-color: #C08A3E; }
.bottle-grey { background-color: #8B8F8A; }
.bottle-fir { background-color: #6B4A32; }
.bottle-moss { background-color: #7C8A5A; }
.bottle-plum { background-color: #6E4A5E; }

.rack-row-text h3 {
  font-size: 24px;
  color: #1F5C5A;
  margin-bottom: 10px;
  font-weight: 700;
}

.rack-row-text p {
  color: #33383C;
  font-size: 15px;
}

.seal {
  justify-self: center;
  width: 64px;
  height: 64px;
  border: 2px solid #1F5C5A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #F5F3ED;
}

.seal::before {
  content: "";
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px dashed #1F5C5A;
  border-radius: 5px;
}

.seal span {
  font-size: 20px;
  font-weight: 700;
  color: #1F5C5A;
  letter-spacing: 0.04em;
}

.shelf-line {
  height: 3px;
  background-color: #C08A3E;
  border-radius: 2px;
  margin: 16px 2px 2px;
}

@media (max-width: 760px) {
  .rack-row { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .bottle-holder { order: -1; }
  .seal { justify-self: center; }
}

/* ===================== METRIC BAND ===================== */
.metric-band {
  background-color: #1F5C5A;
  padding: 60px 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-cell {
  padding: 12px 24px;
  border-left: 1px solid #5A7E7C;
  text-align: center;
}

.metric-cell:first-child { border-left: none; }

.metric-number {
  font-size: 46px;
  font-weight: 700;
  color: #FCFAF4;
  line-height: 1;
  margin-bottom: 10px;
}

.metric-number span { display: block; }

.metric-label {
  color: #C08A3E;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .metric-cell { border-left: none; }
}

/* ===================== STATEMENT BAND ===================== */
.statement-band {
  background-color: #FCFAF4;
  padding: 72px 0;
}

.statement-inner {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid #C08A3E;
  padding: 10px 0 10px 34px;
}

.statement-inner p {
  font-size: 26px;
  line-height: 1.5;
  color: #33383C;
  font-weight: 700;
}

.statement-inner .attribution {
  margin-top: 18px;
  font-size: 14px;
  color: #8B8F8A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===================== CTA BAND ===================== */
.cta-band {
  background-color: #F5F3ED;
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 38px;
  color: #1F5C5A;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-band p {
  color: #33383C;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ===================== ANVIL-SHELF FOOTER ===================== */
.anvil-shelf-footer {
  background-color: #33383C;
  color: #FCFAF4;
  margin-top: 0;
}

.footer-bracket-strip {
  height: 16px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 34px,
    #C08A3E 34px,
    transparent 50px
  );
  background-color: #33383C;
}

.footer-zones {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 0 36px;
}

.footer-glyph {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 18px;
}

.footer-glyph .shelf {
  width: 62px;
  height: 4px;
  background-color: #C08A3E;
  border-radius: 2px;
  position: absolute;
  bottom: -2px;
  left: 8px;
}

.footer-glyph {
  position: relative;
  width: 80px;
  height: 34px;
}

.footer-glyph .bowl-top {
  width: 36px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  position: absolute;
  bottom: 5px;
  background-color: #1F5C5A;
}

.footer-glyph .bowl-top.teal { left: 0; width: 40px; }
.footer-glyph .bowl-top.amber { right: 0; width: 30px; background-color: #C08A3E; }

.footer-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FCFAF4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-descriptor {
  color: #8B8F8A;
  font-size: 14px;
  max-width: 300px;
}

.footer-col-title {
  color: #C08A3E;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link-groups {
  display: flex;
  gap: 44px;
}

.footer-link-group a {
  display: block;
  color: #FCFAF4;
  font-size: 15px;
  padding: 4px 0;
}

.footer-link-group a:hover { color: #C08A3E; }

.footer-contact {
  color: #FCFAF4;
  font-size: 15px;
  line-height: 2;
}

.footer-contact a { color: #FCFAF4; }
.footer-contact a:hover { color: #C08A3E; }

.footer-legal-row {
  border-top: 1px solid #DFDACB;
  padding: 22px 0 28px;
  text-align: center;
  color: #8B8F8A;
  font-size: 14px;
}

@media (max-width: 860px) {
  .footer-zones { grid-template-columns: 1fr; gap: 28px; }
  .footer-link-groups { flex-wrap: wrap; }
}

/* ===================== PAGE HEAD (secondary pages) ===================== */
.page-head {
  background-color: #F5F3ED;
  padding: 64px 0 8px;
}

.page-head .kicker {
  color: #C08A3E;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-head h1 {
  font-size: 44px;
  color: #1F5C5A;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-head p {
  color: #8B8F8A;
  max-width: 720px;
  font-size: 17px;
}

/* ===================== SERVICES PAGE ===================== */
.services-body {
  background-color: #F5F3ED;
  padding: 56px 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-article {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}

.service-article .ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #1F5C5A;
}

.service-article.alt .ribbon { background-color: #C08A3E; }

.service-article h2 {
  font-size: 28px;
  color: #1F5C5A;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-article p {
  color: #33383C;
  font-size: 16px;
  margin-bottom: 14px;
}

.service-article .article-head {
  margin-bottom: 10px;
}

/* Process overview */
.process-overview {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  padding: 40px 30px;
  margin-top: 44px;
}

.process-overview h2 {
  font-size: 30px;
  color: #1F5C5A;
  margin-bottom: 28px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 20px 14px;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  background-color: #F5F3ED;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: #1F5C5A;
  color: #FCFAF4;
  font-weight: 700;
  font-size: 18px;
}

.process-step h3 {
  font-size: 17px;
  color: #1F5C5A;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #33383C;
}

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

/* ===================== CONTACT PAGE ===================== */
.contact-body {
  background-color: #F5F3ED;
  padding: 56px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  padding: 36px 32px;
}

.contact-form h2 {
  font-size: 28px;
  color: #1F5C5A;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 14px;
  color: #33383C;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #DFDACB;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background-color: #F5F3ED;
  color: #33383C;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1F5C5A;
}

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

.form-note {
  font-size: 13px;
  color: #8B8F8A;
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  background-color: #F5F3ED;
  color: #1F5C5A;
  border: 1px solid #DFDACB;
  display: none;
}

.contact-info-card {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  padding: 32px 28px;
}

.contact-info-card h2 {
  font-size: 24px;
  color: #1F5C5A;
  margin-bottom: 20px;
}

.info-row {
  padding: 12px 0;
  border-bottom: 1px solid #DFDACB;
}

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

.info-row .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C08A3E;
  margin-bottom: 4px;
}

.info-row .value {
  color: #33383C;
  font-size: 15px;
}

.info-row .value a { color: #1F5C5A; }

/* FAQ */
.faq-section { margin-top: 20px; }

.faq-section h2 {
  font-size: 24px;
  color: #1F5C5A;
  margin-bottom: 18px;
}

.faq-item {
  background-color: #FCFAF4;
  border: 1px solid #DFDACB;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: #1F5C5A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question .faq-icon {
  font-size: 22px;
  color: #C08A3E;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: #33383C;
  font-size: 15px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===================== SCROLL REVEAL ===================== */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

noscript .fade-up { opacity: 1; }
