:root {
  --turquoise: #76d8d2;
  --turquoise-dark: #229f99;
  --pink: #f7b4c8;
  --pink-deep: #dc6f95;
  --white: #ffffff;
  --gray-50: #f7f8f8;
  --gray-100: #edf1f1;
  --gray-300: #cbd6d6;
  --ink: #163033;
  --muted: #627476;
  --shadow: 0 14px 36px rgba(20, 58, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong { font-size: 15px; }
.brand small {
  max-width: 210px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
}

.menu-button {
  display: grid;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--gray-50);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.social-link.instagram {
  color: var(--pink-deep);
}

.social-link.facebook {
  color: #1d4b9f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  position: sticky;
  top: 69px;
  z-index: 18;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 12px;
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.public-page .app-header {
  position: fixed;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  pointer-events: none;
}

.public-page .brand,
.public-page .menu-button {
  display: none;
}

.public-page .header-actions {
  pointer-events: auto;
  gap: 6px;
}

.main-menu-bubble {
  position: relative;
  pointer-events: auto;
}

.main-menu-bubble summary {
  display: grid;
  width: 92px;
  height: 62px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(22, 48, 51, 0.14);
  overflow: hidden;
  cursor: pointer;
  list-style: none;
}

.main-menu-bubble summary img,
.social-link img,
.public-page .header-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-menu-bubble summary::-webkit-details-marker {
  display: none;
}

.main-menu-panel {
  position: absolute;
  top: 70px;
  left: 0;
  display: grid;
  width: min(260px, calc(100vw - 28px));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(22, 48, 51, 0.18);
}

.main-menu-panel a {
  padding: 12px 14px;
  border-radius: 999px;
  background: #f7fbfb;
  color: var(--ink);
  font-weight: 850;
}

.public-page .social-link {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  box-shadow: 0 10px 24px rgba(22, 48, 51, 0.14);
  overflow: hidden;
}

.public-page .header-link {
  width: 82px;
  height: 54px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(22, 48, 51, 0.14);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--gray-50);
}

.hero > img:not(.brand-sign) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.42) 30%, rgba(255,255,255,0.94) 78%);
}

.hero-content {
  position: relative;
  width: min(100%, 760px);
}

.hero-main {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 136px 18px 34px;
}

.hero-character {
  display: none;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 58, 61, 0.12);
}

.brand-sign {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 2;
  display: none;
  width: min(430px, calc(100vw - 12px));
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: #40585b;
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.btn.primary {
  background: var(--turquoise-dark);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray-300);
}

.btn.review {
  background: var(--pink);
  color: #582438;
}

.btn.full { width: 100%; }
.header-link {
  min-height: 42px;
  padding-inline: 14px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-block: 1px solid var(--gray-100);
}

.home-menu {
  display: grid;
  gap: 10px;
  padding: 18px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.home-menu a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--gray-50);
}

.home-menu .ice-cream-link {
  border-color: #f8bfd2;
  background: #fff2f7;
}

.home-menu strong {
  font-size: 15px;
}

.home-menu span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quick-strip div {
  min-width: 0;
  padding: 16px 8px;
  background: var(--white);
  text-align: center;
}

.quick-strip strong {
  display: block;
  font-size: 24px;
}

.quick-strip span {
  color: var(--muted);
  font-size: 12px;
}

.section,
.admin-shell {
  padding: 46px 16px;
}

.band {
  background: linear-gradient(180deg, #f8fbfb, #fff6f9);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card,
.metric-grid article,
.table-card {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
}

.service-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 8px;
  background: #e7fbfa;
  color: var(--turquoise-dark);
  font-weight: 900;
}

.service-image {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
}

.service-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-panel,
.status-panel {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 16px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimate-layout {
  display: grid;
  gap: 18px;
  align-items: center;
}

.booking-layout {
  display: grid;
  gap: 18px;
  align-items: center;
}

.estimate-illustration,
.booking-illustration {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #385153;
  font-size: 13px;
  font-weight: 800;
}

.conditional-field.hidden {
  display: none;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

textarea { resize: vertical; }
.two-col { display: grid; gap: 12px; }

.time-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.time-slot {
  display: grid;
  gap: 2px;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.time-slot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.time-slot.available {
  border-color: #9edfdc;
  background: #f0fcfb;
}

.time-slot.selected {
  border-color: var(--turquoise-dark);
  background: var(--turquoise-dark);
  color: var(--white);
}

.time-slot.selected span {
  color: rgba(255, 255, 255, 0.84);
}

.time-slot.unavailable {
  border-color: #e4a2b7;
  background: #fff0f4;
  color: #9e3156;
  cursor: not-allowed;
}

.status-results {
  display: grid;
  gap: 10px;
}

.payments-info {
  background: var(--white);
}

.payments-info .section-heading p:not(.eyebrow) {
  color: #40585b;
  line-height: 1.5;
}

.payment-method-grid {
  display: grid;
  gap: 10px;
}

.payment-method-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  border: 1px solid #c8ecea;
  border-radius: 8px;
  background: #f0fcfb;
  color: #164f53;
  font-weight: 900;
}

.payment-method-grid img {
  width: 76px;
  height: 54px;
  object-fit: contain;
}

.mini-card,
.row-card,
.estimate-card {
  padding: 13px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--gray-50);
}

.mini-card strong,
.row-card strong { display: block; }
.mini-card span,
.row-card span,
.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact {
  display: grid;
  gap: 18px;
  background: #e9fbfa;
}

.contact p {
  max-width: 760px;
  color: #40585b;
  line-height: 1.5;
}

.admin-shell {
  background: #f8f9f9;
}

.admin-page {
  background: #f8f9f9;
}

.login-shell {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background: linear-gradient(180deg, #effbfa, #fff6f9);
}

.login-shell.hidden,
.admin-shell.locked {
  display: none;
}

.login-card {
  display: grid;
  width: min(100%, 460px);
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin-bottom: 0;
  font-size: 32px;
}

.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.check-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--turquoise-dark);
}

.login-error {
  min-height: 20px;
  margin: 0;
  color: #a93e63;
  font-size: 13px;
  font-weight: 800;
}

.admin-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.metric-grid article {
  padding: 14px;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 0 -16px 18px;
  padding: 0 16px 8px;
  overflow-x: auto;
}

.admin-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  font-weight: 850;
}

.admin-tabs button.active {
  border-color: var(--turquoise-dark);
  background: var(--turquoise-dark);
  color: var(--white);
}

.admin-panel { display: none; }
.admin-panel.active { display: block; }
.panel-grid { display: grid; gap: 12px; }
.table-card { padding: 16px; overflow: hidden; }

.calendar-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.month-calendar {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.month-calendar-header {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.month-calendar-header strong {
  color: #162b31;
  font-size: 18px;
}

.calendar-nav,
.calendar-day {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.calendar-nav {
  width: 42px;
  height: 38px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: #9f1f62;
  font-size: 24px;
  font-weight: 900;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: #6c7a7d;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: #273b40;
  font-size: 13px;
  font-weight: 850;
}

.calendar-day.empty {
  border: 0;
  background: transparent;
  cursor: default;
}

.calendar-day.has-jobs {
  border-color: #f35fa9;
  background: #ffe4f2;
  color: #82164f;
}

.calendar-day.disabled {
  border-color: #e7ecec;
  background: #f4f6f6;
  color: #a8b0b2;
  cursor: not-allowed;
  opacity: 0.72;
}

.calendar-day.selected {
  border-color: var(--turquoise-dark);
  background: var(--turquoise-dark);
  color: var(--white);
}

.calendar-day strong {
  position: absolute;
  right: 5px;
  bottom: 4px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: #f35fa9;
  color: var(--white);
  font-size: 10px;
}

.calendar-day.selected strong {
  background: var(--white);
  color: var(--turquoise-dark);
}

.row-stack {
  display: grid;
  gap: 10px;
}

.row-card {
  display: grid;
  gap: 10px;
}

.estimate-card {
  display: grid;
  gap: 12px;
}

.estimate-summary {
  display: grid;
  gap: 10px;
}

.estimate-response-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #e8fbfa;
}

.estimate-response-summary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.estimate-response-form,
.booking-approval-form {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.request-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 92px));
  gap: 8px;
}

.request-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}

.notification-card {
  border-color: #d7eeee;
  background: #f0fcfb;
}

.confirm-service-btn {
  width: fit-content;
  margin-top: 8px;
}

.customer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.recurring-plan-card {
  border-color: #f6bfd9;
  background: #fff6fb;
}

.recurring-admin-card {
  border-color: #c8ecea;
  background: #f8ffff;
}

.recurring-admin-section {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #dbeeee;
  border-radius: 8px;
  background: #ffffff;
}

.recurring-mini-list {
  display: grid;
  gap: 5px;
}

.recurring-mini-list b {
  color: #163337;
}

.recurring-schedule-form {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f2c4d8;
}

.recurring-calendar {
  margin-bottom: 0;
  background: #ffffff;
}

.selected-recurring-date {
  color: #7b2a56;
  font-weight: 850;
}

.row-card .actions,
.inline-form {
  display: grid;
  gap: 10px;
}

.weekday-field {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
}

.weekday-field legend {
  padding: 0 5px;
  color: #385153;
  font-size: 13px;
  font-weight: 900;
}

.weekday-field label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8fbfa;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 900;
}

.status-pill.paid { background: #fce5ee; color: #a93e63; }
.status-pill.canceled { background: #eeeeee; color: #5c6668; }

.photo-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}

.status-mix {
  display: grid;
  gap: 8px;
}

.bar {
  display: grid;
  gap: 6px;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--gray-100);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--turquoise), var(--pink));
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  max-width: calc(100% - 32px);
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .menu-button { display: none; }
  .public-page .header-actions { gap: 8px; }
  .main-menu-bubble summary {
    width: 116px;
    height: 78px;
  }
  .main-menu-panel { top: 86px; }
  .public-page .social-link {
    width: 58px;
    height: 58px;
  }
  .public-page .header-link {
    width: 104px;
    height: 68px;
  }
  .mobile-nav {
    position: fixed;
    top: 13px;
    right: 112px;
    display: flex;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .mobile-nav a {
    padding: 10px 12px;
    background: transparent;
  }
  .hero { min-height: 680px; }
  .hero-main {
    display: grid;
    grid-template-columns: minmax(150px, 240px) minmax(0, 760px);
    gap: 28px;
    align-items: end;
    padding: 148px 56px 64px 18px;
  }
  .hero-character { display: block; }
  .brand-sign { display: block; width: min(520px, calc(100vw - 28px)); }
  h1 { font-size: 58px; }
  h2 { font-size: 38px; }
  .section,
  .admin-shell { padding: 64px 56px; }
  .home-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 22px 56px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col,
  .panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .estimate-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    max-width: 1180px;
  }
  .booking-layout {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
    max-width: 1180px;
  }
  .contact,
  .admin-top {
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: center;
  }
  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .inline-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
  }
  .calendar-heading {
    grid-template-columns: 1fr minmax(220px, 280px);
    align-items: end;
  }
  .row-card {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
  }
  .estimate-summary {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
  }
  .estimate-response-form {
    grid-template-columns: minmax(120px, 0.65fr) minmax(150px, 0.8fr) minmax(130px, 0.65fr) minmax(220px, 1.4fr) auto;
    align-items: end;
  }
  .row-card .actions {
    grid-template-columns: minmax(150px, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
