:root {
  --teal: #6ed5af;
  --teal-dark: #0d5972;
  --ink: #21435a;
  --bg: #efefef;
  --line: #d4d4d4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f0f0f0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.top-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 14px;
  background: #ececec;
  border-bottom: 1px solid #ddd;
}
.top-pills a {
  background: #f7f7f7;
  border: 1px solid #cfd5d8;
  border-radius: 22px;
  padding: 10px 18px;
  font-size: 14px;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #d8d8d8;
}
.brand-wrap { display: flex; flex-direction: column; gap: 4px; }
.brand img { height: 46px; width: auto; }
.brand-sub { font-size: 14px; color: #243340; }
.main-nav { display: flex; justify-content: center; gap: 34px; font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.header-cta { display: flex; justify-content: flex-end; }
.call-chip {
  background: var(--teal);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #ddd;
}
.hero-bg {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: saturate(.92);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 580px) minmax(280px, 420px);
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 40px 20px;
}
.hero-card {
  background: rgba(248,245,242,.73);
  border: 12px solid var(--teal);
  padding: 46px 42px;
  text-align: center;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title-top { font-size: 33px; letter-spacing: .03em; }
.hero-title-main { font-size: 58px; font-weight: 800; color: var(--teal-dark); margin-top: 6px; }
.hero-name-prefix, .hero-credentials {
  font-size: 38px;
  font-style: italic;
  margin-top: 28px;
}
.hero-name {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  color: var(--teal-dark);
}
.hero-divider {
  width: 88px;
  height: 2px;
  background: #7f8b92;
  margin: 24px auto 14px;
}
.hero-note { font-size: 18px; font-style: italic; }
.hero-button {
  width: 270px;
  max-width: 100%;
  margin: 38px auto 0;
  padding: 14px 22px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}
.hero-side {
  background: rgba(216, 236, 232, .74);
  padding: 50px 38px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 34px;
  line-height: 1.22;
}
.hero-side p { margin: 0 0 26px; }
.hero-side strong { color: var(--teal-dark); }

.studio-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1060px;
  margin: 36px auto 0;
  background: #eff5f2;
}
.studio-box { padding: 42px 36px; }
.studio-copy { background: #fff; }
.studio-hours-card { background: #dbeee7; }
.studio-box h2 { margin: 0 0 20px; font-size: 42px; color: #163c54; }
.studio-box p { margin: 0 0 16px; line-height: 1.65; }
.studio-hours-card dl { margin: 0; }
.studio-hours-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 8px 0;
}
.contact-mini { margin-top: 24px; padding-top: 18px; border-top: 2px solid rgba(33,67,90,.35); }

.services-intro {
  text-align: center;
  background: #dcecec;
  margin-top: 42px;
  padding: 34px 20px 22px;
}
.services-intro h2 { margin: 0; font-size: 44px; color: #163c54; }
.section-divider {
  width: 110px;
  height: 2px;
  margin: 12px auto 0;
  background: rgba(33,67,90,.5);
}
.services-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: #fff;
}
.service-card { color: #204158; }
.service-image-link img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.service-top-button {
  display: block;
  margin-top: 12px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 15px;
}
.service-card h3 { font-size: 18px; margin: 22px 0 10px; }
.service-card p { line-height: 1.6; margin: 0; }

.contact-section {
  padding: 46px 20px 30px;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
}
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-text h2 { margin: 0 0 8px; font-size: 34px; color: var(--teal); }
.contact-form { margin-top: 26px; }
.form-row { margin-bottom: 18px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
label { display: block; font-size: 15px; color: #333; }
input, textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b8e7d5;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  outline: none;
}
textarea { resize: vertical; }
.checkbox-line { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.checkbox-line input { width: auto; }
.form-submit { text-align: center; }
.form-submit button {
  min-width: 170px;
  padding: 14px 24px;
  border: 1px solid #9dd9c2;
  background: transparent;
  color: var(--teal);
  font-size: 16px;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 30px 28px;
  background: #f8f8f8;
  border-top: 1px solid #ddd;
}
.footer-col { font-size: 18px; color: #2c4b5e; }
.center-col { text-align: center; }
.logo-col { display: flex; justify-content: center; }
.logo-col img { max-height: 64px; width: auto; }
.back-top {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-bottom: 12px;
  font-size: 28px;
}
.cookie-bar {
  background: #000;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
}
.cookie-bar a { color: #fff; text-decoration: underline; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .hero-overlay { grid-template-columns: 1fr; gap: 24px; }
  .hero-card, .hero-side { min-height: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { flex-wrap: wrap; gap: 14px 18px; }
  .hero-title-top { font-size: 24px; }
  .hero-title-main { font-size: 40px; }
  .hero-name, .hero-name-prefix, .hero-credentials { font-size: 28px; }
  .hero-side { font-size: 26px; }
  .studio-hours, .services-grid, .site-footer, .two-cols { grid-template-columns: 1fr; }
  .services-grid { gap: 34px; }
}
