:root {
  --purple: #4d148c;
  --purple-dark: #3a0f6b;
  --orange: #ff6600;
  --orange-dark: #e05800;
  --ink: #1c1a22;
  --ink-soft: #5c5866;
  --paper: #ffffff;
  --paper-tint: #f6f4f9;
  --rule: #e4e0ec;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Baloo 2", "Work Sans", sans-serif;
  color: var(--purple);
  margin: 0;
  line-height: 1.15;
}

a {
  color: inherit;
}

img, svg {
  max-width: 100%;
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-text {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--purple);
  letter-spacing: 0.01em;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

nav.main-nav a:hover {
  color: var(--purple);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.header-address {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft) !important;
  text-decoration: none;
  white-space: nowrap;
}

.header-address:hover {
  color: var(--purple) !important;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--orange-dark) !important;
}

/* Hero */

.hero {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  padding: 72px 0 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-badge {
  display: flex;
  justify-content: center;
}

.hero-badge svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    order: -1;
    max-width: 240px;
    margin: 0 auto;
  }
  .hero-badge svg {
    max-width: 220px;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: #ffb27a;
}

.hero-address {
  font-size: 14px;
  font-weight: 600;
  color: #e7defa;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 56px);
  max-width: 16ch;
}

.hero .tagline {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(18px, 2.6vw, 24px);
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero p.lede {
  font-size: 17px;
  max-width: 56ch;
  color: #e7defa;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* License strip */

.license-strip {
  background: var(--paper-tint);
  border-bottom: 1px solid var(--rule);
}

.license-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 16px 24px;
  justify-content: center;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}

.license-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Sections */

section {
  padding: 64px 0;
}

.section-head {
  max-width: 60ch;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 32px);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}

/* Services */

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 40px;
  align-items: center;
}

.service-row.reverse {
  grid-template-columns: 1fr minmax(220px, 380px);
}

.service-row.reverse .service-media {
  order: 2;
}

.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-tint);
}

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

.service-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-copy h3 {
  font-size: 22px;
  color: var(--ink);
}

.service-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

.service-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-copy ul li {
  color: var(--ink-soft);
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.service-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 102, 0, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }
  .service-row.reverse .service-media {
    order: 0;
  }
}

/* Location */

.location {
  background: var(--paper-tint);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-inner .callout {
  align-self: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detail-row {
  display: flex;
  gap: 14px;
}

.detail-row .glyph {
  font-size: 20px;
  width: 28px;
  flex-shrink: 0;
}

.detail-row .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

.detail-row .value {
  font-size: 16px;
  font-weight: 600;
}

.detail-row .value a {
  text-decoration: none;
  color: var(--purple);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
}

.hours-table .row {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.hours-table .row span:first-child {
  min-width: 132px;
}

.hours-table .row.closed .val {
  color: var(--ink-soft);
}

/* Note callout */

.callout {
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
  background: var(--paper);
}

.callout b {
  color: var(--ink);
}

/* Footer */

footer.site-footer {
  background: var(--purple-dark);
  color: #d9cdef;
  padding: 44px 0 28px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand svg {
  width: 28px;
  height: 28px;
}

.footer-brand-text {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}

.footer-meta {
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: #b6a6cf;
}

/* Upload & Print */

.upload-print {
  background: var(--paper-tint);
}

.upload-layout {
  max-width: 640px;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--paper);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--purple);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  font-family: "Work Sans", sans-serif;
}

.upload-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.upload-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.upload-success .success-icon {
  font-size: 28px;
}

.upload-success h3 {
  color: var(--ink);
  font-size: 20px;
}

.upload-success p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 640px;
}

.review-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--paper);
}

.review-card:hover {
  border-color: var(--purple);
}

.review-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple);
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-icon-yelp {
  background: #d32323;
}

.review-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-source {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.review-stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.review-cta {
  font-size: 13.5px;
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 760px) {
  nav.main-nav {
    gap: 14px;
  }
  nav.main-nav .nav-link {
    display: none;
  }
  .header-address {
    display: none;
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .upload-form {
    padding: 20px;
  }
}
