/* Sweep Right — Agency landing */

:root {
  --canvas: #f4f7fb;
  --ink: #0b1b2b;
  --body: #44576a;
  --surface: #ffffff;
  --accent: #93caed;
  --accent-glow: rgb(147 202 237 / 0.42);
  --accent-soft: rgb(147 202 237 / 0.16);
  --line: rgb(11 27 43 / 0.1);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --header-h: 5rem;
  --scroll-anchor-offset: var(--header-h);
  --pad-x: 1.5rem;
  --pad-block: 4rem;
  --content-max: 71.25rem;
  --card-pad: 2rem;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mobile-nav,
  .mobile-nav__panel,
  .nav-toggle span {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

html.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.875rem var(--pad-x) 0;
  pointer-events: none;
}

.site-header__shell {
  pointer-events: auto;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 0.65rem 1.25rem;
  background: rgb(244 247 245 / 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgb(9 30 22 / 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 2.75rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.site-nav a {
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--body);
  padding-bottom: 0.2rem;
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0;
  transform: scale3d(0, 1, 1);
  transform-origin: left center;
  transition:
    transform 0.5s var(--ease-out),
    opacity 0.5s var(--ease-out);
  box-shadow: 0 0 12px var(--accent-glow);
  will-change: transform, opacity;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), 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 overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(9 30 22 / 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -12px 0 40px rgb(9 30 22 / 0.12);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0.85rem var(--pad-x);
  padding-top: max(0.85rem, env(safe-area-inset-top, 0px));
  border-bottom: 1px solid var(--line);
}

.mobile-nav__brand {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mobile-nav__close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.mobile-nav__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mobile-nav__close:hover {
  border-color: rgb(147 202 237 / 0.4);
  color: var(--accent);
}

.mobile-nav__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex: 1;
  padding: 1.25rem var(--pad-x);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgb(9 30 22 / 0.06);
  transition: color 0.2s;
}

.mobile-nav__links a:last-child {
  border-bottom: none;
}

.mobile-nav__links a:hover {
  color: var(--accent);
}

.mobile-nav__cta {
  width: calc(100% - var(--pad-x) * 2);
  max-width: none;
  margin: 0 var(--pad-x) max(1.25rem, env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.65rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out), background 0.25s;
}

.btn--pill:hover {
  border-color: rgb(9 30 22 / 0.2);
  transform: translateY(-1px);
}

.btn--glow {
  background: var(--accent);
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 0 var(--accent-glow), 0 12px 40px var(--accent-glow);
}

.btn--glow:hover {
  box-shadow: 0 0 24px 2px var(--accent-glow), 0 16px 48px var(--accent-glow);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 1.5rem) var(--pad-x) var(--pad-block);
  scroll-margin-top: var(--scroll-anchor-offset);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--content-max);
  margin-inline: auto;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
}

.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.hero__lead {
  margin: 1.75rem 0 2.5rem;
  max-width: 34rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero__cta {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.hero__media {
  position: relative;
  min-height: clamp(22rem, 42vw, 32rem);
}

.hero__frame {
  position: absolute;
  border-radius: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}

.hero__frame--back {
  inset: 8% -6% -6% 18%;
  background: linear-gradient(135deg, var(--accent-soft), rgb(255 255 255 / 0.9));
  border: 1px solid var(--line);
  transform: rotate(4deg);
}

.hero__frame--main {
  inset: 0 0 10% 0;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgb(9 30 22 / 0.1);
  transform: rotate(-2deg);
}

.hero__frame svg,
.hero__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__frame img {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.02);
}

.hero__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  min-height: inherit;
  padding: 2rem;
  background:
    linear-gradient(160deg, var(--accent-soft) 0%, transparent 50%),
    linear-gradient(220deg, rgb(9 30 22 / 0.04), transparent 60%),
    var(--surface);
  color: var(--body);
}

.hero__photo-placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.35;
}

.hero__photo-placeholder span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero__badge {
  position: absolute;
  bottom: 6%;
  left: -8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  color: var(--canvas);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgb(9 30 22 / 0.25);
}

.hero__badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.hero__badge span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* Section head */
.section-head {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.section-head__label {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(57 124 201);
}

.section-head h2 {
  margin: 0;
  max-width: 16ch;
}

.section-head--wide h2,
.contact__head h2,
.hours__card .section-head h2 {
  max-width: none;
}

/* Services */
.section {
  scroll-margin-top: var(--scroll-anchor-offset);
}

.services {
  padding: var(--pad-block) var(--pad-x);
}

.services__wrap {
  max-width: var(--content-max);
  margin-inline: auto;
}

.services__cards {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 24px 70px rgb(9 30 22 / 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card__media {
  position: relative;
  height: clamp(12.5rem, 20vw, 16.5rem);
  overflow: hidden;
  background: rgb(9 30 22 / 0.03);
}

.service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.service-card__media img {
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.05) contrast(1.02);
}

.service-card__shine {
  display: none;
}

.service-card__body {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.85rem;
}

.service-card__index {
  display: none;
}

.service-card__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid rgb(147 202 237 / 0.28);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.service-card__desc {
  margin: 0.45rem 0 0;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--body);
  max-width: 50ch;
}

.service-card h3 {
  margin: 0.35rem 0 0.65rem;
}

.service-card__bullets {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-card__bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 500;
  color: var(--body);
  line-height: 1.45;
}

.service-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: auto;
  height: auto;
  color: var(--accent);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.services__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row--offset {
  padding-left: clamp(0rem, 12vw, 14rem);
}

.service-row__index {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgb(147 202 237 / 0.28);
  user-select: none;
}

.service-row__body h3 {
  margin: 0 0 1rem;
}

.service-row__body p {
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Hours */
.hours {
  padding: 0 var(--pad-x) var(--pad-block);
}

.hours__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--card-pad);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 24px 60px rgb(9 30 22 / 0.06);
}

.hours__sub {
  margin-top: 1rem;
  max-width: 28rem;
}

.hours__status {
  color: var(--accent);
  font-weight: 600;
}

.hours__schedule {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--line);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__row dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hours__row dd {
  margin: 0;
  font-weight: 500;
  color: var(--body);
}

.hours__row--closed dd {
  color: var(--accent);
  font-weight: 600;
}

/* Contact */
.contact {
  padding: 0 var(--pad-x) var(--pad-block);
  background: linear-gradient(180deg, rgb(147 202 237 / 0.2), rgb(147 202 237 / 0.3));
}

.contact__shell {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(1.2rem, 2.2vw, 2rem) 0;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact__head h2 {
  color: var(--ink);
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
}

.contact__head p {
  color: rgb(46 64 82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 33rem;
}

.contact__info {
  margin: 1.75rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgb(11 27 43 / 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.9rem;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(11 27 43 / 0.1);
  border-radius: 0.9rem;
  background: rgb(255 255 255 / 0.8);
}

.contact__icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: rgb(11 27 43 / 0.82);
  background: rgb(255 255 255 / 0.98);
  border: 1px solid rgb(11 27 43 / 0.12);
  flex-shrink: 0;
}

.contact__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.contact__meta {
  display: grid;
  gap: 0.2rem;
}

.contact__k {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact__hint {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  color: rgb(68 87 106 / 0.95);
  line-height: 1.45;
}

.contact__v {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
  font-size: 0.92rem;
  font-weight: 600;
  word-break: break-word;
}

.contact__v a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgb(147 202 237 / 0.45);
}

.contact__v a:hover {
  color: rgb(57 124 201);
  border-bottom-color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  background: rgb(255 255 255 / 0.98);
  border: 1px solid rgb(11 27 43 / 0.08);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  box-shadow: 0 20px 45px rgb(11 27 43 / 0.12);
}

.field--line {
  margin-bottom: 1rem;
}

.field--line label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(68 87 106 / 0.82);
}

.field--line input,
.field--line textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgb(11 27 43 / 0.1);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 0.95);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field--line input::placeholder,
.field--line textarea::placeholder {
  color: rgb(58 77 70 / 0.45);
}

.field--line input:focus,
.field--line textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(147 202 237 / 0.25);
}

.field--line textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.contact-form__submit {
  align-self: stretch;
  margin-top: 0.75rem;
  padding: 0.88rem 2rem;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: var(--pad-block) var(--pad-x);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 2rem;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--body);
}

.site-footer__credit {
  margin: 0 0 0 auto;
  font-size: 0.8125rem;
  color: var(--body);
}

.site-footer__credit a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.site-footer__credit a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid {
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }

  .hero__media {
    min-height: clamp(18rem, 32vw, 24rem);
    max-width: none;
    width: 100%;
  }

  .hero__badge {
    left: auto;
    right: 4%;
    bottom: 4%;
  }

  .services__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours__card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact__shell {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.1rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  :root {
    --pad-x: clamp(2.5rem, 4.8vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 4rem;
    --pad-x: 1.25rem;
    --pad-block: 2.75rem;
    --card-pad: 1.25rem;
  }

  body {
    font-size: 1rem;
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  h3 {
    font-size: 1.0625rem;
  }

  .site-header {
    z-index: 960;
    padding: 0.5rem var(--pad-x) 0;
    padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: 0.25rem;
  }

  .site-header__inner {
    gap: 0.5rem;
    min-height: 2.5rem;
  }

  .site-header__shell {
    padding: 0.5rem 0.75rem;
  }

  .site-logo {
    font-size: 1rem;
  }

  .section-head h2 {
    max-width: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: var(--pad-block);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero__media {
    order: -1;
    min-height: 15rem;
    max-width: 100%;
    margin-inline: auto;
    width: 100%;
  }

  .hero__frame--back {
    inset: 12% 0 -2% 14%;
    transform: rotate(2deg);
  }

  .hero__frame--main {
    inset: 0 0 8% 0;
    transform: rotate(-1deg);
  }

  .hero__tag {
    margin-bottom: 0.85rem;
    font-size: 0.6875rem;
  }

  .hero__lead {
    margin: 1rem 0 1.35rem;
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__cta {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 0.9rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero__badge {
    left: auto;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0.9rem;
    border-radius: 0.75rem;
  }

  .hero__badge strong {
    font-size: 1.35rem;
  }

  .hero__badge span {
    font-size: 0.6875rem;
  }

  .section-head {
    margin-bottom: 1.25rem;
    text-align: left;
  }

  .section-head__label {
    margin-bottom: 0.5rem;
  }

  .services {
    padding-block: var(--pad-block);
  }

  .services__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card__media {
    height: 12rem;
  }

  .service-card__body {
    padding: var(--card-pad);
  }

  .service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: none;
  }

  .service-card__bullets {
    margin-top: 0.85rem;
    gap: 0.4rem;
  }

  .service-card__bullets li {
    font-size: 0.875rem;
  }

  .hours {
    padding-bottom: var(--pad-block);
  }

  .hours__card {
    padding: var(--card-pad);
    gap: 1.5rem;
  }

  .hours__sub {
    margin-top: 0.5rem;
    max-width: none;
    font-size: 0.9375rem;
  }

  .hours__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.85rem 0;
  }

  .contact {
    padding-bottom: var(--pad-block);
  }

  .contact__shell {
    padding: 0.85rem 0;
    gap: 1.25rem;
  }

  .contact__head h2 {
    margin-bottom: 0.65rem;
    max-width: none;
  }

  .contact__head p {
    max-width: none;
  }

  .contact__info {
    margin-top: 1.25rem;
    padding-top: 1rem;
    gap: 0.65rem;
  }

  .contact__item {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0.8rem;
  }

  .contact__v {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .field--line {
    margin-bottom: 1.15rem;
  }

  .contact-form__submit {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .site-footer {
    padding-block: 1.75rem max(1.75rem, env(safe-area-inset-bottom, 0px));
    padding-inline: var(--pad-x);
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-row--offset {
    padding-left: 0;
  }

  .site-footer__credit {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 1rem;
  }

  h1 {
    font-size: 1.625rem;
  }

  h2 {
    font-size: 1.3125rem;
  }

  .mobile-nav__panel {
    width: 100%;
  }

  .mobile-nav__links a {
    font-size: 1.0625rem;
    padding: 0.75rem 0;
  }

  .hero__media {
    min-height: 13rem;
  }

  .hero__frame--back {
    inset: 14% 2% 0 10%;
  }

  .service-card__media {
    height: 10.5rem;
  }

  .contact__v {
    font-size: 0.85rem;
    word-break: break-word;
  }
}
