:root {
  --plum: #5b2150;
  --plum-dark: #3f1537;
  --blush: #f4dadd;
  --blush-light: #fcf3f4;
  --charcoal: #2f2a29;
  --muted: #5a504e;
  --line: #e7cfd3;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--charcoal);
}

p { margin: 0 0 1em; }

a { color: var(--plum); }

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
}

svg { flex-shrink: 0; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--plum);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 0.75rem; }
.skip-link:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 2px; }

/* Sample bar */
.sample-bar {
  background: var(--charcoal);
  color: var(--blush-light);
  text-align: center;
  padding: 0.4rem 1rem;
}
.sample-bar p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  color: var(--plum);
  text-decoration: none;
}
.brand-mark .berry { fill: var(--plum); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
}
.brand-sub { font-size: 0.95rem; color: var(--muted); }

.site-nav { order: 3; width: 100%; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25rem;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.75rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}
.site-nav li:first-child a { padding-left: 0; }
.site-nav a:hover { color: var(--plum); text-decoration: underline; text-underline-offset: 4px; }

.header-call { padding: 0 0.9rem; }

@media (max-width: 379px) {
  .header-call span { font-size: 0.95rem; }
}

@media (min-width: 820px) {
  .header-inner { flex-wrap: nowrap; padding-top: 1rem; padding-bottom: 1rem; }
  .site-nav { order: 0; width: auto; margin-left: auto; }
  .site-nav li:first-child a { padding-left: 0.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 6px;
  border: 2px solid var(--plum);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-dark); border-color: var(--plum-dark); }
.btn-secondary { background: transparent; color: var(--plum); }
.btn-secondary:hover { background: var(--blush); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  background: var(--blush-light);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-kicker {
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  max-width: 16ch;
  letter-spacing: -0.01em;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-art {
  position: relative;
  padding: 3rem 1rem 0;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 30%;
  background: var(--blush);
  border-radius: 999px 999px 0 0;
}
.hero-art::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 4%;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--plum);
}

.hours-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--plum);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(63, 21, 55, 0.08);
}
.card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card-hours {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.card-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.card-hours li span:first-child { font-weight: 600; }
.card-note { margin: 0; color: var(--muted); }
.card-note a {
  font-weight: 600;
  display: inline-block;
  padding: 0.6rem 0;
}

@media (min-width: 860px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
  .hero-art { justify-self: end; }
}

/* Sections */
.section { padding: 3.5rem 0; }
@media (min-width: 860px) {
  .section { padding: 5rem 0; }
}
.section h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }

.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-head p { color: var(--muted); font-size: 1.0625rem; }

/* Services */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.service {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.service h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.service p { margin: 0; color: var(--muted); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--blush);
  color: var(--plum);
}
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 600px) {
  .service-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .service-list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Studio */
.studio {
  background: var(--plum);
  color: var(--blush-light);
}
.studio h2 { color: var(--white); max-width: 14ch; }
.studio-text { font-size: 1.125rem; max-width: 36rem; }
.studio-text p:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  .studio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Hours */
.hours-grid { display: grid; gap: 2rem; }
.hours-grid p { color: var(--muted); font-size: 1.0625rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.0625rem;
  background: var(--white);
}
.hours-table th,
.hours-table td {
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.hours-table tr:first-child th,
.hours-table tr:first-child td { border-top: 1px solid var(--line); }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; }
.hours-table .closed { color: var(--muted); }
@media (min-width: 860px) {
  .hours-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
}

/* Area */
.area {
  background: var(--blush-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area p { color: var(--muted); font-size: 1.0625rem; max-width: 40rem; }
.town-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}
.town-list li {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  color: var(--plum);
}
.town-list li:not(:last-child)::after {
  content: "·";
  margin: 0 0.6em;
  color: var(--muted);
}

/* Book */
.book {
  background: var(--charcoal);
  color: var(--blush-light);
  padding: 3.5rem 0;
}
@media (min-width: 860px) {
  .book { padding: 5rem 0; }
}
.book h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}
.book-inner > p { font-size: 1.0625rem; }
.book-options {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.book-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.9rem;
  padding: 1.25rem;
  min-height: 44px;
  border-radius: 6px;
  background: var(--blush);
  color: var(--plum-dark);
  text-decoration: none;
}
.book-option svg { grid-row: span 2; color: var(--plum); }
.book-option .option-label { font-weight: 600; font-size: 1rem; }
.book-option .option-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  overflow-wrap: anywhere;
}
.book-option:hover { background: var(--white); }
.book-option:focus-visible { outline: 3px solid var(--blush); outline-offset: 3px; }
@media (min-width: 760px) {
  .book-options { grid-template-columns: repeat(3, 1fr); }
}

/* Footer */
.site-footer {
  background: var(--plum-dark);
  color: var(--blush-light);
  padding: 2.5rem 0;
}
.site-footer a {
  color: var(--white);
  display: inline-block;
  padding: 0.6rem 0;
}
.site-footer a:focus-visible { outline: 3px solid var(--blush); outline-offset: 2px; }
.site-footer p { margin-bottom: 0.5rem; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
}
.footer-heading { font-weight: 600; color: var(--white); }
.footer-grid { display: grid; gap: 1.75rem; }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}
