@import url('assets/fonts.css');

:root {
  --lacquer: #101820;
  --cobalt: #17466f;
  --cobalt-deep: #0e3557;
  --porcelain: #eef2f3;
  --paper: #f8faf9;
  --steel: #9aa8b2;
  --graphite: #27313a;
  --felt: #b94338;
  --white: #f7fafb;
  --line: #c8d1d6;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", Calibri, sans-serif;
  --page: min(100% - 48px, 1320px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--felt); outline-offset: 4px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--lacquer);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
}
h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.65rem, 4.8vw, 4.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.65rem, 2.4vw, 2.3rem); }
p { max-width: 68ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  padding: 10px max(24px, calc((100vw - 1320px) / 2));
  background: var(--lacquer);
  color: var(--white);
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img { width: 43px; height: 43px; object-fit: contain; }
.brand span {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a {
  color: #dce6ea;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.site-header nav a[aria-current="page"] { color: var(--white); text-decoration: underline; text-decoration-color: var(--felt); text-decoration-thickness: 3px; }
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #6e7a83;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.header-call:hover { border-color: var(--white); background: #1c2934; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}
.button:active { transform: translateY(1px); }
.button-felt { background: var(--felt); color: var(--white); }
.button-felt:hover { background: #96352d; }
.button-dark { background: var(--lacquer); color: var(--white); }
.button-dark:hover { background: #26333e; }
.button-light { background: var(--white); color: var(--cobalt-deep); }
.button-light:hover { background: #dce7eb; }
.text-action { font-weight: 700; color: inherit; }

/* Home opening */
.hero {
  position: relative;
  min-height: calc(100dvh - 76px);
  background: var(--lacquer);
  color: var(--white);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 55%; opacity: 0.86; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(9 21 31 / .25), transparent 58%), linear-gradient(0deg, rgb(8 20 29 / .76), transparent 48%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1320px) / 2));
  bottom: 0;
  width: min(930px, calc(100% - 48px));
  padding: clamp(26px, 4vw, 54px);
  padding-left: 0;
  background: linear-gradient(90deg, var(--cobalt-deep) 0 84%, transparent 84%);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 16% 0 -50vw;
  z-index: -1;
  background: var(--cobalt-deep);
}
.hero h1 {
  max-width: 22ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 5vw, 4.8rem);
}
.hero p { max-width: 54ch; margin-bottom: 26px; font-size: 1.12rem; color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }
.hero-actions .email { color: var(--white); font-weight: 700; }

.instrument-register {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 112px) 0 clamp(72px, 7vw, 104px);
  background: var(--porcelain);
}
.register-inner { width: var(--page); margin-inline: auto; }
.register-lead { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: end; margin-bottom: 70px; }
.register-lead h2 { max-width: 10ch; margin-bottom: 0; color: var(--cobalt-deep); }
.register-lead p { margin-bottom: 0; font-size: 1.15rem; }
.adjustments {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas: "tune voice" "repair regulate";
  border-block: 1px solid #9dabb3;
}
.adjustment { padding: 30px 30px 34px 0; }
.adjustment-voice,
.adjustment-regulate { padding-left: 30px; border-left: 1px solid #9dabb3; }
.adjustment-tune,
.adjustment-voice { border-bottom: 1px solid #9dabb3; }
.adjustment h3 { margin-bottom: 12px; color: var(--cobalt-deep); }
.adjustment p { margin-bottom: 0; font-size: 1rem; }
.adjustment-tune { grid-area: tune; }
.adjustment-voice { grid-area: voice; }
.adjustment-regulate { grid-area: regulate; }
.adjustment-repair { grid-area: repair; }

.technician {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  min-height: 720px;
  background: var(--lacquer);
  color: var(--white);
}
.technician-photo { position: relative; overflow: hidden; }
.technician-photo img { height: 100%; object-fit: cover; object-position: center 22%; }
.technician-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 8vw, 120px); }
.technician-copy h2 { max-width: 13ch; margin-bottom: 28px; }
.technician-copy > p { color: #d8e1e5; font-size: 1.12rem; }
.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 26px 0 28px;
  border-top: 1px solid #54626c;
}
.credentials div { padding: 22px 0; border-bottom: 1px solid #54626c; }
.credentials dt { margin-bottom: 4px; color: var(--steel); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.credentials dd { margin: 0; font-weight: 600; }
.service-note { padding: 18px 20px; border: 1px solid #6c7b84; color: var(--white) !important; font-size: 1rem !important; }

.review-proof { padding: clamp(38px, 4vw, 54px) 0 clamp(28px, 3vw, 40px); background: var(--paper); }
.review-proof-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: minmax(150px, .42fr) minmax(0, 1.58fr); gap: clamp(28px, 6vw, 88px); align-items: start; border-block: 1px solid var(--line); padding: 28px 0 30px; }
.review-kicker { margin: 5px 0 0; color: var(--cobalt-deep); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.review-proof blockquote { max-width: 800px; margin: 0; }
.review-proof blockquote p { margin-bottom: 15px; color: var(--cobalt-deep); font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.25rem); font-weight: 600; line-height: 1.03; }
.review-proof footer { color: #53616b; font-size: .98rem; font-weight: 700; }
.review-proof footer span::before { content: " · "; color: var(--felt); }

.restoration-anatomy { padding: clamp(72px, 8vw, 112px) 0 clamp(64px, 7vw, 90px); background: var(--paper); }
.anatomy-inner { width: var(--page); margin-inline: auto; }
.anatomy-head { display: grid; grid-template-columns: .68fr 1.32fr; align-items: stretch; max-width: none; margin-bottom: 42px; background: var(--cobalt-deep); color: var(--white); }
.anatomy-head-image { min-height: 410px; overflow: hidden; }
.anatomy-head-image img { height: 100%; object-fit: cover; }
.anatomy-head-copy { align-self: center; padding: clamp(42px, 6vw, 88px); }
.anatomy-head h2 { max-width: 15ch; color: var(--white); }
.anatomy-head p { font-size: 1.16rem; }
.anatomy-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: auto auto;
  gap: 26px;
}
.anatomy-piece { position: relative; margin: 0; overflow: hidden; background: var(--lacquer); color: var(--white); }
.anatomy-piece img { height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.75,.2,1); }
.anatomy-piece:hover img { transform: scale(1.018); }
.anatomy-piece figcaption { position: absolute; left: 0; bottom: 0; width: min(460px, 86%); padding: 24px 28px; background: rgb(16 24 32 / .92); }
.anatomy-piece h3 { margin-bottom: 8px; }
.anatomy-piece p { margin-bottom: 0; color: #dce5e8; font-size: .98rem; }
.anatomy-piece-main { grid-row: 1 / 3; min-height: 720px; }
.anatomy-piece-side { min-height: 347px; }
.anatomy-link { margin-top: 34px; }

.fazioli-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  background: var(--cobalt);
  color: var(--white);
}
.fazioli-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 8vw, 120px); }
.fazioli-logo { width: 220px; max-width: 56%; margin-bottom: 34px; padding: 12px 16px; background: var(--white); }
.fazioli-copy h2 { max-width: 8ch; }
.fazioli-copy p { color: var(--white); font-size: 1.12rem; }
.fazioli-image { overflow: hidden; background: var(--white); }
.fazioli-image img { height: 100%; object-fit: cover; object-position: center; }

.care-note { padding: clamp(56px, 5vw, 72px) 0; background: var(--porcelain); }
.care-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; }
.care-inner h2 { max-width: 15ch; color: var(--cobalt-deep); }
.care-guidance { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.care-guidance article { padding-top: 24px; border-top: 3px solid var(--felt); }
.care-guidance h3 { color: var(--cobalt-deep); }
.care-guidance p { margin-bottom: 0; }

.service-area { padding: clamp(64px, 8vw, 105px) 0; background: var(--paper); }
.service-area-inner { width: var(--page); margin-inline: auto; }
.service-area h2 { max-width: 12ch; color: var(--cobalt-deep); }
.area-opening { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(42px, 7vw, 90px); align-items: end; margin-bottom: 48px; }
.city-field { margin: 30px 0 0; font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.15rem); font-weight: 500; line-height: 1.3; color: #5e6a72; }
.city-field strong { color: var(--cobalt-deep); }
.shop-location { position: relative; padding: 34px; border-top: 8px solid var(--felt); background: var(--porcelain); }
.shop-location::before { content: ""; display: block; width: 36px; height: 36px; margin-bottom: 22px; border: 9px solid var(--cobalt-deep); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.shop-location p { margin-bottom: 12px; }
.shop-location .location-label { color: #53616b; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.shop-location .button { margin-top: 8px; }
.contact-register {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 30px;
  padding: 34px;
  background: var(--cobalt-deep);
  color: var(--white);
}
.contact-register p { margin-bottom: 6px; }
.contact-register a { font-weight: 700; }
.contact-register .button { align-self: center; justify-self: start; }

/* Inner pages */
.page-hero { position: relative; min-height: 600px; display: grid; align-items: end; background: var(--lacquer); color: var(--white); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(11 28 42 / .94), rgb(11 28 42 / .08) 72%); }
.page-hero-copy { position: relative; z-index: 1; width: var(--page); margin-inline: auto; padding: 80px 0 62px; }
.hero-panel {
  width: min(900px, 100%);
  margin-left: -36px;
  padding: 32px 36px 36px;
  background: rgb(14 53 87 / .96);
}
.hero-panel-light {
  width: min(610px, 100%);
  border: 1px solid #c8d1d6;
  background: rgb(238 242 243 / .97);
  box-shadow: 0 18px 48px rgb(14 53 87 / .12);
}
.page-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 5.2vw, 4.5rem);
}
.page-hero p { margin-bottom: 24px; font-size: 1.15rem; color: var(--white); }

.editorial-intro { padding: clamp(80px, 10vw, 140px) 0; background: var(--porcelain); }
.editorial-intro-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; }
.editorial-intro h2 { color: var(--cobalt-deep); }
.editorial-intro p { font-size: 1.1rem; }
.fact-list { margin: 10px 0 0; padding: 0; list-style: none; border-top: 1px solid #9aa8b2; }
.fact-list li { padding: 18px 0; border-bottom: 1px solid #9aa8b2; }
.fact-list strong { display: block; color: var(--cobalt-deep); }

.process-story { padding: clamp(80px, 10vw, 150px) 0; }
.process-story-inner { width: var(--page); margin-inline: auto; }
.process-story h2 { max-width: 10ch; margin-bottom: 38px; color: var(--cobalt-deep); }
.process-row { display: grid; grid-template-columns: 1.12fr .88fr; gap: 7vw; align-items: center; margin-bottom: 64px; }
.process-row:nth-child(even) { grid-template-columns: .88fr 1.12fr; }
.process-row:nth-child(even) .process-media { order: 2; }
.process-media { min-height: 430px; overflow: hidden; background: var(--lacquer); }
.process-media img { height: 100%; min-height: 430px; object-fit: cover; }
.process-copy h3 { color: var(--cobalt-deep); font-size: clamp(2rem, 4vw, 3.6rem); }
.process-copy p { font-size: 1.08rem; }

/* Restoration register: the workshop photographs carry the proof, while the
   larger copy and tighter row cadence keep their explanations in proportion. */
@media (min-width: 981px) {
  .process-story { padding: clamp(68px, 5vw, 88px) 0 clamp(74px, 5.5vw, 96px); }
  .process-story h2 {
    max-width: 14ch;
    margin-bottom: clamp(34px, 3vw, 50px);
    font-size: clamp(3.5rem, 4.4vw, 4.8rem);
  }
  .process-row,
  .process-row:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(44px, 5vw, 72px);
    margin-bottom: clamp(40px, 3.5vw, 54px);
  }
  .process-row:last-child { margin-bottom: 0; }
  .process-media,
  .process-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .process-copy h3 {
    max-width: 13ch;
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 3.35vw, 3.65rem);
  }
  .process-copy p {
    max-width: 47ch;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.goal-panel { padding: clamp(70px, 8vw, 110px) 0; background: var(--cobalt); color: var(--white); }
.goal-panel-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.goal-panel h2 { max-width: 8ch; }
.goal-panel p { color: var(--white); font-size: 1.16rem; }
.goal-panel .button { margin-top: 16px; }
.goal-panel-image { min-height: 520px; overflow: hidden; }
.goal-panel-image img { height: 100%; min-height: 520px; object-fit: cover; object-position: 52% 55%; }
.goal-panel-copy h2 { max-width: 12ch; }

.fazioli-opening { min-height: 640px; background: var(--white); color: var(--lacquer); }
.fazioli-opening .page-hero-media img { opacity: 1; object-fit: cover; object-position: 72% center; }
.fazioli-opening .page-hero-media::after { background: linear-gradient(90deg, var(--white) 0 48%, rgb(247 250 251 / .78) 57%, transparent 74%); }
.fazioli-opening .page-hero-copy { align-self: center; margin-top: 0; }
.fazioli-opening .page-hero-copy img { width: 220px; margin-bottom: 28px; }
.fazioli-opening h1 { max-width: 17ch; color: var(--cobalt-deep); }
.fazioli-opening p { max-width: 42ch; color: var(--graphite); }

.craft-factors { padding: clamp(80px, 10vw, 140px) 0; background: var(--lacquer); color: var(--white); }
.craft-inner { width: var(--page); margin-inline: auto; }
.craft-inner > h2 { max-width: 9ch; margin-bottom: 36px; }
.factor-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; }
.factor-image { position: relative; min-height: 620px; margin: 0; overflow: hidden; }
.factor-image img { height: 100%; object-fit: cover; object-position: 50% center; }
.factor-image .overlay-copy { position: absolute; inset: auto 0 0 0; padding: 30px; background: rgb(16 24 32 / .92); }
.factor-image p { margin-bottom: 0; color: var(--white); }
.factor-stack { display: grid; gap: 30px; }
.factor-stack article { padding: 22px 4px; border-top: 1px solid #53616b; background: transparent; }
.factor-stack article:last-child { border-bottom: 1px solid #53616b; }
.factor-stack h3 { color: var(--white); }
.factor-stack p { color: var(--white); }

.inventory { padding: clamp(80px, 10vw, 150px) 0; background: var(--porcelain); }
.inventory-inner { width: var(--page); margin-inline: auto; }
.inventory h2 { max-width: 10ch; color: var(--cobalt-deep); }
.inventory-intro { font-size: 1.15rem; }
.instrument-list { margin-top: 34px; }
.instrument-item { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; padding: 40px 0; border-top: 1px solid #9aa8b2; }
.instrument-item:last-child { border-bottom: 1px solid #9aa8b2; }
.instrument-item h3 { color: var(--cobalt-deep); font-size: clamp(2.1rem, 4vw, 3.5rem); }
.instrument-status { color: var(--felt); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

.studio-call { padding: clamp(80px, 10vw, 130px) 0; background: var(--cobalt-deep); color: var(--white); }
.studio-call-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1.15fr .85fr; align-items: start; gap: 8vw; }
.studio-call h2 { max-width: 14ch; }
.studio-call p { color: var(--white); }

/* Desktop density correction: use the horizontal canvas instead of leaving
   the Fazioli title and inventory introduction in isolated tall columns. */
@media (min-width: 981px) {
  .fazioli-image,
  .fazioli-image img { min-height: 650px; }
  .craft-factors { padding: clamp(72px, 6vw, 96px) 0; }
  .craft-inner { display: block; }
  .craft-inner > h2 {
    max-width: 14ch;
    margin: 0 0 36px;
    font-size: clamp(3.5rem, 4.4vw, 4.8rem);
  }
  .factor-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: clamp(24px, 3vw, 42px);
  }
  .factor-image { min-height: 560px; }
  .factor-stack { gap: 0; align-content: start; }
  .factor-stack article { padding: 24px 4px 26px; }

  .inventory { padding: clamp(72px, 6vw, 96px) 0; }
  .inventory-inner {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    column-gap: clamp(48px, 7vw, 112px);
    align-items: end;
  }
  .inventory h2 { max-width: 8ch; margin: 0; }
  .inventory-intro { max-width: 52ch; margin: 0 0 8px; }
  .instrument-list { grid-column: 1 / -1; margin-top: 32px; }
  .instrument-item { gap: clamp(48px, 7vw, 112px); padding: 30px 0 32px; }
  .instrument-item h3 { margin-bottom: 0; }
  .instrument-item p:last-child { margin-bottom: 0; }
  .area-opening { grid-template-columns: 1fr; gap: 30px; }
  .shop-location {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px 28px;
    padding: 24px 30px;
  }
  .shop-location::before { margin: 0; }
  .shop-location p { margin: 0; }
  .shop-location .location-label { grid-column: 2; }
  .shop-location p:nth-of-type(2) { grid-column: 3; grid-row: 1 / span 2; }
  .shop-location p:nth-of-type(3) { grid-column: 2; }
  .shop-location .button { grid-column: 4; grid-row: 1 / span 2; margin: 0; }
  .fazioli-opening .page-hero-media::after { background: linear-gradient(90deg, var(--white) 0 38%, rgb(247 250 251 / .62) 56%, transparent 74%); }
  .inventory h2 { max-width: 12ch; }
  .service-area #restoration-contact-title { max-width: 16ch; }
}

.site-footer { padding: 60px 0 26px; background: #0a1117; color: #cbd6db; }
.footer-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 50px; }
.footer-brand { display: flex; gap: 15px; align-items: center; color: var(--white); font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.footer-brand img { width: 48px; height: 48px; }
.site-footer h2 { font-size: 1rem; font-family: var(--body); text-transform: uppercase; letter-spacing: .08em; color: #92a2aa; }
.site-footer p { margin-bottom: 8px; font-size: .95rem; }
.footer-links { display: grid; gap: 8px; }
.footer-meta { width: var(--page); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid #34414a; font-size: .82rem; }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 820px); }
  .site-header { grid-template-columns: 1fr auto; gap: 14px; padding-inline: 18px; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; justify-content: center; padding: 8px 0 4px; }
  .header-call { grid-column: 2; grid-row: 1; }
  .hero { min-height: 820px; }
  .hero-copy { left: 18px; width: calc(100% - 36px); }
  .register-lead, .care-inner, .editorial-intro-inner, .goal-panel-inner { grid-template-columns: 1fr; gap: 34px; }
  .review-proof-inner { grid-template-columns: 1fr; gap: 10px; }
  .technician { grid-template-columns: .8fr 1.2fr; }
  .technician-copy { padding: 60px 42px; }
  .credentials { grid-template-columns: 1fr; }
  .fazioli-feature { grid-template-columns: .95fr 1.05fr; }
  .contact-register { grid-template-columns: 1fr 1fr; }
  .contact-register .button { grid-column: 1 / -1; }
  .factor-layout { grid-template-columns: 1fr; }
  .factor-image { min-height: 540px; }
  .area-opening { grid-template-columns: 1fr; }
  .shop-location { max-width: 560px; }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 32px); }
  body { font-size: 17px; }
  h1 { font-size: clamp(3.25rem, 15vw, 4.7rem); }
  h2 { max-width: none !important; font-size: clamp(1.8rem, 7.8vw, 2.4rem); }
  .site-header { min-height: 126px; }
  .brand img { width: 37px; height: 37px; }
  .brand span { font-size: 1.45rem; }
  .header-call { min-height: 40px; padding: 6px 11px; font-size: .9rem; }
  .site-header nav { justify-content: flex-start; gap: 17px; overflow-x: auto; scrollbar-width: none; }
  .site-header nav a { white-space: nowrap; }
  .hero { min-height: 718px; display: grid; grid-template-rows: 330px auto; }
  .hero-media { position: relative; grid-row: 1; }
  .hero-media img { object-position: 57% 59%; opacity: .92; }
  .hero-copy { position: relative; left: 0; bottom: auto; grid-row: 2; align-self: stretch; width: 100%; padding: 30px 16px 38px; background: var(--cobalt-deep); }
  .hero-copy::before { display: none; }
  .hero h1 { max-width: 9.4ch; margin-bottom: 14px; }
  .hero p { margin-bottom: 20px; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .register-lead { margin-bottom: 45px; }
  .adjustments { display: block; }
  .adjustment,
  .adjustment-voice,
  .adjustment-regulate { padding: 24px 0; border-left: 0; border-bottom: 1px solid #9dabb3; }
  .adjustment-regulate { border-bottom: 0; }
  .technician { display: block; }
  .technician-photo { height: 440px; }
  .technician-photo img { object-position: center 18%; }
  .technician-copy { padding: 54px 16px 68px; }
  .technician-copy h2 { max-width: none; }
  .anatomy-grid { display: block; }
  .anatomy-head { grid-template-columns: 1fr; }
  .anatomy-head-image { min-height: 290px; }
  .anatomy-head-copy { padding: 36px 20px 42px; }
  .anatomy-piece, .anatomy-piece-main, .anatomy-piece-side { min-height: 390px; margin-bottom: 16px; }
  .anatomy-piece figcaption { width: 100%; padding: 20px; }
  .fazioli-feature { display: flex; flex-direction: column-reverse; }
  .fazioli-image { min-height: 390px; }
  .fazioli-copy { padding: 54px 16px 68px; }
  .care-guidance { grid-template-columns: 1fr; }
  .city-field { font-size: 1.65rem; }
  .contact-register { grid-template-columns: 1fr; padding: 26px 22px; }
  .contact-register .button { grid-column: auto; width: 100%; }
  .page-hero { min-height: 570px; }
  .page-hero-copy { padding-bottom: 42px; }
  .hero-panel { width: 100%; margin-left: 0; padding: 24px 20px 28px; }
  .process-row, .process-row:nth-child(even) { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .process-row:last-child { margin-bottom: 0; }
  .process-row:nth-child(even) .process-media { order: initial; }
  .process-media, .process-media img { min-height: 300px; }
  .fazioli-opening { min-height: 650px; align-items: start; }
  .fazioli-opening .page-hero-media { position: relative; height: 285px; order: 1; }
  .fazioli-opening .page-hero-media::after { background: linear-gradient(0deg, var(--white), transparent 52%); }
  .fazioli-opening .page-hero-media img { object-position: center; }
  .fazioli-opening .page-hero-copy { order: 2; padding: 10px 0 34px; }
  .fazioli-opening .hero-panel-light { padding-inline: 0; background: var(--paper); }
  .fazioli-opening .page-hero-copy img { width: 180px; margin-bottom: 16px; }
  .craft-inner > h2 { max-width: none; }
  .factor-image { min-height: 470px; }
  .factor-image img { object-position: 20% center; }
  .instrument-item { grid-template-columns: 1fr; gap: 12px; }
  .studio-call-inner { grid-template-columns: 1fr; gap: 24px; }
  .goal-panel-image, .goal-panel-image img { min-height: 330px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .button { max-width: 100%; }
}

@media (max-width: 420px) {
  .brand span { font-size: 1.3rem; }
  .header-call { font-size: .82rem; }
  .site-header nav { gap: 14px; }
  .hero { min-height: 760px; }
  .hero-copy { padding-bottom: 34px; }
  .hero h1 { font-size: 2.9rem; max-width: 100%; }
  .page-hero h1 { font-size: 3.2rem; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
