:root {
  --ink: #25211f;
  --soft-ink: #71645e;
  --paper: #f2ebe7;
  --chalk: #fff9f6;
  --line: rgba(37, 33, 31, 0.13);
  --gold: #b98979;
  --copper: #a87768;
  --bronze: #785247;
  --black: #11100f;
  --shadow: 0 24px 80px rgba(37, 33, 31, 0.17);
  --radius-ui: 6px;
  --radius-panel: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

[hidden] {
  display: none !important;
}

main {
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border-radius: var(--radius-ui);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px max(16px, env(safe-area-inset-left)) 12px max(16px, env(safe-area-inset-right));
  color: var(--chalk);
  background: linear-gradient(to bottom, rgba(13, 11, 9, 0.92), rgba(13, 11, 9, 0.28), rgba(13, 11, 9, 0));
}

.brand-mark {
  grid-column: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.42);
  background: rgba(255, 250, 243, 0.12);
  border-radius: var(--radius-ui);
  backdrop-filter: blur(18px);
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0;
}

.top-nav {
  grid-column: 2;
  display: none;
  justify-self: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  background: rgba(13, 11, 9, 0.2);
  border-radius: var(--radius-ui);
  backdrop-filter: blur(20px);
}

.top-nav a {
  padding: 10px 14px;
  color: rgba(255, 250, 243, 0.84);
  font-size: 14px;
}

.header-action,
.primary-link,
.secondary-link,
.submit-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-ui);
  cursor: pointer;
  white-space: nowrap;
}

.header-action {
  grid-column: 3;
  justify-self: end;
  padding: 0 16px;
  background: var(--chalk);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: end;
  overflow: clip;
  background: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: top center;
}

.hero-shade {
  background:
    linear-gradient(to top, rgba(13, 11, 9, 0.92), rgba(13, 11, 9, 0.18) 52%, rgba(13, 11, 9, 0.44)),
    radial-gradient(circle at 18% 52%, rgba(184, 139, 74, 0.2), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: 106px 20px 36px;
  color: var(--chalk);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 14vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 250, 243, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  width: 100%;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
}

.primary-link {
  background: var(--chalk);
  color: var(--ink);
}

.secondary-link {
  border: 1px solid rgba(255, 250, 243, 0.34);
  color: var(--chalk);
  background: rgba(255, 250, 243, 0.08);
  backdrop-filter: blur(14px);
}

.service-band,
.booking-section,
.diagnostic-section,
.atelier-section,
.proof-section,
.results-section,
.reviews-section,
.contact-section {
  scroll-margin-top: 78px;
  padding: 52px 20px;
}

.service-band {
  background: var(--paper);
}

.diagnostic-section {
  background: #fff9f6;
}

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

.diagnostic-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #f7eee9;
  padding: 18px;
}

.diagnostic-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-ui);
  background: var(--ink);
  color: var(--chalk);
  font-size: 12px;
  font-weight: 900;
}

.diagnostic-card h3,
.diagnostic-card p {
  margin: 0;
}

.diagnostic-card h3 {
  font-size: 22px;
}

.diagnostic-card p {
  color: var(--soft-ink);
  line-height: 1.5;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 7vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

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

.service-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 250, 243, 0.74);
}

.service-card.featured {
  border-color: rgba(168, 119, 104, 0.42);
  background: linear-gradient(145deg, #f5dfd9, #e6c2b5);
  color: var(--ink);
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.service-card.featured p,
.service-card.featured .service-meta {
  color: rgba(23, 18, 15, 0.68);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 14px;
}

.service-price {
  font-size: 25px;
  font-weight: 850;
  letter-spacing: 0;
}

.booking-section {
  background: #eadbd4;
}

.booking-intro {
  margin-bottom: 22px;
}

.booking-shell {
  display: grid;
  gap: 14px;
}

.booking-main,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.booking-main {
  display: grid;
  gap: 22px;
  padding: 18px;
}

.diagnostic-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(168, 119, 104, 0.36);
  border-radius: var(--radius-panel);
  background: #fbf2ee;
  padding: 18px;
}

.diagnostic-panel-heading {
  display: grid;
  gap: 7px;
}

.diagnostic-panel-heading h3,
.diagnostic-panel-heading p {
  margin: 0;
}

.diagnostic-panel-heading h3 {
  font-size: 24px;
}

.diagnostic-panel-heading p {
  color: var(--soft-ink);
  line-height: 1.5;
}

.diagnostic-fields {
  display: grid;
  gap: 10px;
}

.diagnostic-fields label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}

.diagnostic-fields select,
.diagnostic-fields textarea,
.diagnostic-fields input[type="file"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-ui);
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.diagnostic-fields select {
  min-height: 48px;
}

.diagnostic-fields textarea {
  resize: vertical;
  line-height: 1.45;
}

.diagnostic-fields span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 700;
}

.full-span {
  grid-column: 1 / -1;
}

.step-block {
  display: grid;
  gap: 12px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-title span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: var(--radius-ui);
  background: var(--ink);
  color: var(--chalk);
  font-size: 12px;
  font-weight: 850;
}

.step-title h3 {
  margin: 0;
  font-size: 18px;
}

.selectable-list,
.date-strip,
.slot-grid {
  display: grid;
  gap: 8px;
}

.select-card,
.date-button,
.slot-button {
  border: 1px solid var(--line);
  border-radius: var(--radius-ui);
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.select-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 86px;
  padding: 14px;
}

.select-card:hover,
.date-button:hover,
.slot-button:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: rgba(141, 83, 53, 0.48);
}

.select-card.active,
.date-button.active,
.slot-button.active {
  border-color: var(--copper);
  background: #f1ddd6;
}

.select-card strong,
.select-card span {
  display: block;
}

.select-card strong {
  margin-bottom: 6px;
}

.select-card span {
  color: var(--soft-ink);
  font-size: 13px;
}

.select-card em {
  font-style: normal;
  font-weight: 850;
}

.date-strip {
  grid-auto-flow: column;
  grid-auto-columns: minmax(82px, 1fr);
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.date-button {
  min-height: 78px;
  padding: 12px;
  scroll-snap-align: start;
}

.date-button span {
  display: block;
  color: var(--soft-ink);
  font-size: 12px;
  text-transform: uppercase;
}

.date-button strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

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

.slot-button {
  min-height: 46px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 780;
}

.slot-button.holiday {
  border-color: rgba(184, 139, 74, 0.56);
  background: #fbefd9;
  color: var(--bronze);
}

.slot-button.request {
  border-color: rgba(184, 139, 74, 0.56);
  background: #fbefd9;
  color: var(--bronze);
}

.slot-button small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.slot-button:disabled {
  cursor: not-allowed;
  color: rgba(91, 81, 72, 0.5);
  background:
    linear-gradient(135deg, transparent 47%, rgba(23, 18, 15, 0.16) 48%, rgba(23, 18, 15, 0.16) 52%, transparent 53%),
    #eee7dc;
}

.slot-note {
  min-height: 20px;
  margin: -2px 0 0;
  color: var(--bronze);
  font-size: 13px;
  line-height: 1.45;
}

.slot-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius-ui);
  padding: 14px;
  color: var(--soft-ink);
  text-align: center;
}

.client-form {
  display: grid;
  gap: 10px;
}

.client-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}

.client-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-ui);
  background: #fffdf8;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.client-form input:focus {
  border-color: var(--copper);
}

.sms-note {
  margin: 2px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.45;
}

.submit-button {
  min-height: 54px;
  margin-top: 4px;
  background: var(--ink);
  color: var(--chalk);
  font-weight: 850;
}

.cancel-button {
  min-height: 48px;
  border: 1px solid rgba(141, 83, 53, 0.32);
  border-radius: var(--radius-ui);
  background: transparent;
  color: var(--bronze);
  cursor: pointer;
  font-weight: 850;
}

.booking-summary {
  position: sticky;
  top: 82px;
  align-self: start;
  padding: 20px;
}

.summary-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-summary h3 {
  margin: 0;
  font-size: 26px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--soft-ink);
}

dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.no-payment {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  border-radius: var(--radius-panel);
  background: var(--ink);
  color: var(--chalk);
  padding: 16px;
}

.no-payment strong {
  font-size: 17px;
}

.no-payment span {
  color: rgba(255, 250, 243, 0.76);
  line-height: 1.45;
}

.confirmation-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(184, 139, 74, 0.42);
  border-radius: var(--radius-panel);
  background: #fbefd9;
  padding: 18px;
}

.confirmation-panel[hidden] {
  display: none;
}

.confirmation-panel h3,
.confirmation-panel p {
  margin: 0;
}

.confirmation-panel h3 {
  font-size: 25px;
}

.confirmation-panel p {
  color: var(--soft-ink);
  line-height: 1.5;
}

.proof-section {
  background: #f7f2ea;
}

.profile-heading {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 82px;
  align-items: start;
  gap: 12px;
}

.profile-avatar {
  position: relative;
  margin: 0;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(184, 139, 74, 0.44);
  border-radius: 999px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 18, 15, 0.16);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

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

.proof-card {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 250, 243, 0.78);
  padding: 14px;
}

.proof-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  font-size: 20px;
}

.proof-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.results-section {
  background: #eadbd4;
}

.results-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 78vw);
  gap: 12px;
  overflow-x: auto;
  padding: 0 20px 8px;
  margin: 0 -20px;
  scroll-padding-left: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.result-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(23, 18, 15, 0.16);
  border-radius: var(--radius-panel);
  background: #fffaf3;
  color: var(--ink);
  overflow: hidden;
  scroll-snap-align: start;
}

.result-card.large {
  height: auto;
}

.result-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  object-fit: cover;
  object-position: center;
}

.result-card div {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.result-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-card strong {
  font-size: 20px;
  line-height: 1.08;
}

.reviews-section {
  background: #f8f4ee;
}

.reviews-shell {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.reviews-score {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(184, 139, 74, 0.32);
  border-radius: var(--radius-panel);
  background: #fffaf3;
  padding: 18px;
  box-shadow: 0 18px 52px rgba(23, 18, 15, 0.08);
}

.reviews-score strong {
  width: max-content;
  border: 1px solid rgba(23, 18, 15, 0.14);
  border-radius: var(--radius-ui);
  background: #fff;
  padding: 7px 10px;
  color: #202124;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.reviews-score span {
  font-weight: 900;
}

.reviews-score small {
  color: var(--soft-ink);
  line-height: 1.35;
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 82vw);
  gap: 12px;
  overflow-x: auto;
  padding: 0 20px 8px;
  margin: 0 -20px;
  scroll-padding-left: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--chalk);
  padding: 18px;
  box-shadow: 0 14px 38px rgba(23, 18, 15, 0.08);
  scroll-snap-align: start;
}

.review-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

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

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 999px;
  background: #e8f0fe;
  color: #1967d2;
  font-size: 13px;
  font-weight: 900;
}

.review-topline strong,
.review-topline span {
  display: block;
}

.review-topline strong {
  font-size: 17px;
}

.review-topline span,
.review-footer small,
.review-footer span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.google-source {
  flex: 0 0 auto;
  border: 1px solid rgba(23, 18, 15, 0.12);
  border-radius: var(--radius-ui);
  background: #fff;
  color: #202124;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 850;
}

.review-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.52;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.review-footer small {
  color: var(--gold);
  text-transform: uppercase;
}

.review-footer span {
  color: var(--soft-ink);
  text-align: right;
}

.review-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-ui);
  background: var(--ink);
  color: var(--chalk);
  padding: 0 18px;
  font-weight: 850;
}

.atelier-section {
  display: grid;
  gap: 24px;
  background: var(--ink);
  color: var(--chalk);
}

.atelier-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.6;
}

.atelier-copy p {
  margin: 0;
}

.atelier-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atelier-facts span {
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius-ui);
  padding: 9px 11px;
  color: var(--chalk);
}

.contact-section {
  display: grid;
  gap: 22px;
  background: var(--paper);
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 9px;
  color: var(--soft-ink);
  line-height: 1.45;
}

.contact-list a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-wrap {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #ddd3c7;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius-panel);
  background: var(--bronze);
  color: var(--chalk);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

.toast.show {
  display: flex;
}

@media (min-width: 560px) {
  .primary-link,
  .secondary-link {
    width: auto;
  }

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

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

  .service-card.featured {
    grid-column: span 2;
  }

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

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

  .sms-note,
  .submit-button,
  .confirmation-panel {
    grid-column: span 2;
  }

  .profile-heading {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
  }

  .results-grid {
    grid-auto-columns: minmax(300px, 48vw);
  }

  .reviews-grid {
    grid-auto-columns: minmax(320px, 56vw);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 880px) {
  .site-header {
    padding: 18px 34px;
  }

  .top-nav {
    display: flex;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 150px 48px 70px;
  }

  .service-band,
  .booking-section,
  .diagnostic-section,
  .atelier-section,
  .proof-section,
  .results-section,
  .reviews-section,
  .contact-section {
    padding: 78px 48px;
  }

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

  .service-card.featured {
    grid-column: auto;
  }

  .booking-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }

  .booking-main {
    padding: 26px;
  }

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

  .atelier-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    align-items: start;
  }

  .profile-heading {
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
  }

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

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

  .results-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }

  .result-card.large {
    grid-row: auto;
    min-height: 0;
  }

  .reviews-shell {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: start;
  }

  .reviews-grid {
    grid-auto-columns: minmax(310px, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }

  .review-link {
    width: auto;
  }

  .contact-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    align-items: stretch;
  }
}

@media (min-width: 1180px) {
  .hero-content,
  .service-band,
  .booking-section,
  .diagnostic-section,
  .atelier-section,
  .proof-section,
  .results-section,
  .reviews-section,
  .contact-section {
    padding-left: max(64px, calc((100vw - 1180px) / 2));
    padding-right: max(64px, calc((100vw - 1180px) / 2));
  }
}
